pub struct Parser { /* private fields */ }
Expand description
The internal redis response parser.
Implementations§
source§impl Parser
impl Parser
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.
sourcepub fn new() -> Parser
pub fn new() -> Parser
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.
sourcepub fn parse_value<T: Read>(&mut self, reader: T) -> RedisResult<Value>
pub fn parse_value<T: Read>(&mut self, reader: T) -> RedisResult<Value>
Parses synchronously into a single value from the reader.