[][src]Struct redis::streams::StreamId

pub struct StreamId {
    pub id: String,
    pub map: HashMap<String, Value>,
}
This is supported on crate feature streams only.

Represents a stream id and its field/values as a HashMap

Fields

id: String

The stream id (entry ID) of this particular message.

map: HashMap<String, Value>

All fields in this message, associated with their respective values.

Implementations

impl StreamId[src]

pub fn get<T: FromRedisValue>(&self, key: &str) -> Option<T>[src]

Fetches value of a given field and converts it to the specified type.

pub fn contains_key(&self, key: &&str) -> bool[src]

Does the message contain a particular field?

pub fn len(&self) -> usize[src]

Returns how many field/value pairs exist in this message.

pub fn is_empty(&self) -> bool[src]

Returns true if there are no field/value pairs in this message.

Trait Implementations

impl Clone for StreamId[src]

impl Debug for StreamId[src]

impl Default for StreamId[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>,