[−][src]Struct nsq_client::Msg
Message sent by nsqd
Example
struct Consumer(Addr<Connection>); impl Actor for Consumer { type Context = Context<Self>; fn handle(&mut self, ctx: &mut Self::Context) { self.subscribe::<Msg>(ctx, self.0.clone()); } } fn Handler<Msg> for Consumer { type Result = (); fn handle(&mut self, msg: Msg, _: &mut Self::Context) { println!("timestamp: {}", msg.timestamp); println!("attemps: {}", msg.attemps); println!("id: {}", msg.id); println!("data: {}", msg.body); println!("msg debug: {:?}", msg); } }
Fields
timestamp: i64Timestamp of the message
attemps: u16Number of attemps reader tried to process the message
id: StringId of the message
body: StringData sent by nsqd
Trait Implementations
impl Default for Msg[src]
impl Clone for Msg[src]
fn clone(&self) -> Msg[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for Msg[src]
impl Message for Msg[src]
Auto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.