Trait bincode2::BincodeRead
source · [−]pub trait BincodeRead<'storage>: Read {
fn forward_read_str<V>(
&mut self,
length: usize,
visitor: V
) -> Result<V::Value>
where
V: Visitor<'storage>;
fn get_byte_buffer(&mut self, length: usize) -> Result<Vec<u8>>;
fn forward_read_bytes<V>(
&mut self,
length: usize,
visitor: V
) -> Result<V::Value>
where
V: Visitor<'storage>;
}
Expand description
An optional Read trait for advanced Bincode usage.
It is highly recommended to use bincode with io::Read
or &[u8]
before
implementing a custom BincodeRead
.
Required Methods
Forwards reading length
bytes of a string on to the serde reader.
Return the first length
bytes of the internal byte buffer.