[][src]Struct redis::Msg

pub struct Msg { /* fields omitted */ }

Represents a pubsub message.

Methods

impl Msg[src]

This holds the data that comes from listening to a pubsub connection. It only contains actual message data.

pub fn get_channel<T: FromRedisValue>(&self) -> RedisResult<T>[src]

Returns the channel this message came on.

pub fn get_channel_name(&self) -> &str[src]

Convenience method to get a string version of the channel. Unless your channel contains non utf-8 bytes you can always use this method. If the channel is not a valid string (which really should not happen) then the return value is "?".

pub fn get_payload<T: FromRedisValue>(&self) -> RedisResult<T>[src]

Returns the message's payload in a specific format.

pub fn get_payload_bytes(&self) -> &[u8][src]

Returns the bytes that are the message's payload. This can be used as an alternative to the get_payload function if you are interested in the raw bytes in it.

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

Returns true if the message was constructed from a pattern subscription.

pub fn get_pattern<T: FromRedisValue>(&self) -> RedisResult<T>[src]

If the message was constructed from a message pattern this can be used to find out which one. It's recommended to match against an Option<String> so that you do not need to use from_pattern to figure out if a pattern was set.

Auto Trait Implementations

impl Unpin for Msg

impl Sync for Msg

impl Send for Msg

impl RefUnwindSafe for Msg

impl UnwindSafe for Msg

Blanket Implementations

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T