pub enum FeedResult<'a, T> {
Consumed,
OverFull(&'a [u8]),
DeserError(&'a [u8]),
Success {
data: T,
remaining: &'a [u8],
},
}
Expand description
The result of feeding the accumulator.
Variants§
Consumed
Consumed all data, still pending.
OverFull(&'a [u8])
Buffer was filled. Contains remaining section of input, if any.
DeserError(&'a [u8])
Reached end of chunk, but deserialization failed. Contains remaining section of input, if. any
Success
Deserialization complete. Contains deserialized data and remaining section of input, if any.