[][src]Struct redis::streams::StreamPendingId

pub struct StreamPendingId {
    pub id: String,
    pub consumer: String,
    pub last_delivered_ms: usize,
    pub times_delivered: usize,
}
This is supported on crate feature streams only.

Represents a pending message parsed from xpending methods.

Fields

id: String

The ID of the message.

consumer: String

The name of the consumer that fetched the message and has still to acknowledge it. We call it the current owner of the message.

last_delivered_ms: usize

The number of milliseconds that elapsed since the last time this message was delivered to this consumer.

times_delivered: usize

The number of times this message was delivered.

Trait Implementations

impl Clone for StreamPendingId[src]

impl Debug for StreamPendingId[src]

impl Default for StreamPendingId[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,