[][src]Struct trezm_redis::Parser

pub struct Parser { /* fields omitted */ }

The internal redis response parser.

Methods

impl Parser[src]

The parser can be used to parse redis responses into values. Generally you normally do not use this directly as it's already done for you by the client but in some more complex situations it might be useful to be able to parse the redis responses.

pub fn new() -> Parser[src]

Creates a new parser that parses the data behind the reader. More than one value can be behind the reader in which case the parser can be invoked multiple times. In other words: the stream does not have to be terminated.

pub fn parse_value<T: Read>(&mut self, reader: T) -> RedisResult<Value>[src]

Parses synchronously into a single value from the reader.

Trait Implementations

impl Default for Parser[src]

Auto Trait Implementations

impl !RefUnwindSafe for Parser

impl Send for Parser

impl !Sync for Parser

impl Unpin for Parser

impl !UnwindSafe for Parser

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