[][src]Struct redis::Parser

pub struct Parser<T> { /* fields omitted */ }

The internal redis response parser.

Methods

impl<'a, T: BufRead> Parser<T>[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(reader: T) -> Parser<T>[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(&mut self) -> RedisResult<Value>[src]

Auto Trait Implementations

impl<T> Send for Parser<T> where
    T: Send

impl<T> Sync for Parser<T> where
    T: Sync

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Erased for T