pub struct Parser { /* private fields */ }
Expand description
The internal redis response parser.
Implementations
sourceimpl 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.
Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more