[][src]Struct rsmq_async::RsmqQueueAttributes

pub struct RsmqQueueAttributes {
    pub vt: u64,
    pub delay: u64,
    pub maxsize: u64,
    pub totalrecv: u64,
    pub totalsent: u64,
    pub created: u64,
    pub modified: u64,
    pub msgs: u64,
    pub hiddenmsgs: u64,
}

Fields

vt: u64delay: u64maxsize: u64totalrecv: u64totalsent: u64created: u64modified: u64msgs: u64hiddenmsgs: u64

Trait Implementations

impl Debug for RsmqQueueAttributes[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,