pub struct ConnectedZmqRpc { /* private fields */ }Expand description
The connected form of ZmqRpc.
Implementations§
Source§impl ConnectedZmqRpc
impl ConnectedZmqRpc
Sourcepub fn bound_address(&self) -> Option<String>
pub fn bound_address(&self) -> Option<String>
The address the responder resolved by binding (useful with an ephemeral
tcp://...:0 endpoint); None until a subscription has bound.
Sourcepub fn publisher(&self) -> ZmqRpcPublisher
pub fn publisher(&self) -> ZmqRpcPublisher
A publisher from the connected form.
Trait Implementations§
Source§impl ConnectedBroker for ConnectedZmqRpc
impl ConnectedBroker for ConnectedZmqRpc
Source§impl Debug for ConnectedZmqRpc
impl Debug for ConnectedZmqRpc
Source§impl DefaultPublish for ConnectedZmqRpc
impl DefaultPublish for ConnectedZmqRpc
Source§type Policy = ZmqRpcPublish
type Policy = ZmqRpcPublish
The broker’s plain publish policy, constructible with its defaults.
Source§impl PublishPolicy<ConnectedZmqRpc> for ZmqRpcPublish
impl PublishPolicy<ConnectedZmqRpc> for ZmqRpcPublish
Source§type Live = ZmqRpcPublisher
type Live = ZmqRpcPublisher
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 ConnectedZmqRpc
impl Subscribe for ConnectedZmqRpc
Source§type Subscriber = ZmqSubscriber
type Subscriber = ZmqSubscriber
The subscriber type opened by a by-name subscription.
Auto Trait Implementations§
impl !RefUnwindSafe for ConnectedZmqRpc
impl !UnwindSafe for ConnectedZmqRpc
impl Freeze for ConnectedZmqRpc
impl Send for ConnectedZmqRpc
impl Sync for ConnectedZmqRpc
impl Unpin for ConnectedZmqRpc
impl UnsafeUnpin for ConnectedZmqRpc
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