pub struct ConnectedZmqFanout { /* private fields */ }Expand description
The connected form of ZmqFanout.
Implementations§
Source§impl ConnectedZmqFanout
impl ConnectedZmqFanout
Sourcepub fn bound_address(&self) -> Option<String>
pub fn bound_address(&self) -> Option<String>
The address a local subscription resolved by binding (useful with an ephemeral
tcp://...:0 endpoint); None until a subscription has bound.
Sourcepub fn publisher(&self) -> ZmqFanoutPublisher
pub fn publisher(&self) -> ZmqFanoutPublisher
A publisher from the connected form.
Trait Implementations§
Source§impl ConnectedBroker for ConnectedZmqFanout
impl ConnectedBroker for ConnectedZmqFanout
Source§impl Debug for ConnectedZmqFanout
impl Debug for ConnectedZmqFanout
Source§impl DefaultPublish for ConnectedZmqFanout
impl DefaultPublish for ConnectedZmqFanout
Source§type Policy = ZmqFanoutPublish
type Policy = ZmqFanoutPublish
The broker’s plain publish policy, constructible with its defaults.
Source§impl PublishPolicy<ConnectedZmqFanout> for ZmqFanoutPublish
impl PublishPolicy<ConnectedZmqFanout> for ZmqFanoutPublish
Source§type Live = ZmqFanoutPublisher
type Live = ZmqFanoutPublisher
The live form this policy pairs into: a
Publisher for a leaf policy, or the live
wiring form for a combinator stack (a typed publisher over a policy pairs into the same
typed publisher over the live leaf).Source§impl Subscribe for ConnectedZmqFanout
impl Subscribe for ConnectedZmqFanout
Source§type Subscriber = ZmqSubscriber
type Subscriber = ZmqSubscriber
The subscriber type opened by a by-name subscription.
Auto Trait Implementations§
impl !RefUnwindSafe for ConnectedZmqFanout
impl !UnwindSafe for ConnectedZmqFanout
impl Freeze for ConnectedZmqFanout
impl Send for ConnectedZmqFanout
impl Sync for ConnectedZmqFanout
impl Unpin for ConnectedZmqFanout
impl UnsafeUnpin for ConnectedZmqFanout
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more