Expand description
Implementation of anything directly publisher related
Structs§
- DynImmediate
Publisher - An immediate publisher that holds a dynamic reference to the channel
- DynPublisher
- A publisher that holds a dynamic reference to the channel
- Immediate
Pub - A publisher that can only use the
publish_immediatefunction, but it doesn’t have to be registered with the channel. (So an infinite amount is possible) - Immediate
Publisher - An immediate publisher that holds a generic reference to the channel
- Pub
- A publisher to a channel
- PubSink
futures_sink::Sinkadapter forPub.- Publisher
- A publisher that holds a generic reference to the channel
- Publisher
Wait Future - Future for the publisher wait action
- Send
DynImmediate Publisher - An immediate publisher that holds a dynamic reference to the channel. This version can be sent between threads but can only be created if the underlying mutex is Send + Sync.
- Send
DynPublisher - A publisher that holds a dynamic reference to the channel. This version can be sent between threads but can only be created if the underlying mutex is Send + Sync.