Trait bytecodec::TryTaggedDecode [−][src]
This trait allows for decoding known-tagged or unknown-tagged items from a byte sequence incrementally.
Associated Types
Loading content...Required methods
fn try_start_decoding(&mut self, tag: Self::Tag) -> Result<bool>[src]
Tries to prepare to start decoding an item tagged by tag.
If the given tag is unknown, it will return Ok(false).
Errors
The following errors may be returned by the decoder:
ErrorKind::IncompleteDecoding:- The previous decoding process has not been completed
ErrorKind::DecoderTerminated:- The decoder has terminated (i.e., cannot decode any more items)
ErrorKind::Other:- Other errors has occurred