Struct redis::Parser[][src]

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.

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.

Auto Trait Implementations

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

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