pub struct ZmqQueuePublish;Expand description
The publish policy for ZmqQueuePublisher.
§Examples
use ruststream_zeromq::ZmqQueuePublish;
let policy = ZmqQueuePublish::default();Trait Implementations§
Source§impl Clone for ZmqQueuePublish
impl Clone for ZmqQueuePublish
Source§fn clone(&self) -> ZmqQueuePublish
fn clone(&self) -> ZmqQueuePublish
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ZmqQueuePublish
Source§impl Debug for ZmqQueuePublish
impl Debug for ZmqQueuePublish
Source§impl Default for ZmqQueuePublish
impl Default for ZmqQueuePublish
Source§fn default() -> ZmqQueuePublish
fn default() -> ZmqQueuePublish
Returns the “default value” for a type. Read more
Source§impl PublishPolicy<ConnectedZmqQueue> for ZmqQueuePublish
impl PublishPolicy<ConnectedZmqQueue> for ZmqQueuePublish
Source§type Live = ZmqQueuePublisher
type Live = ZmqQueuePublisher
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).Auto Trait Implementations§
impl Freeze for ZmqQueuePublish
impl RefUnwindSafe for ZmqQueuePublish
impl Send for ZmqQueuePublish
impl Sync for ZmqQueuePublish
impl Unpin for ZmqQueuePublish
impl UnsafeUnpin for ZmqQueuePublish
impl UnwindSafe for ZmqQueuePublish
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