Trait bincode::de::BorrowDecoder  
source · pub trait BorrowDecoder<'de>: Decoder {
    type BR: BorrowReader<'de>;
    // Required method
    fn borrow_reader(&mut self) -> &mut Self::BR;
}Expand description
Required Associated Types§
sourcetype BR: BorrowReader<'de>
 
type BR: BorrowReader<'de>
The concrete BorrowReader type
Required Methods§
sourcefn borrow_reader(&mut self) -> &mut Self::BR
 
fn borrow_reader(&mut self) -> &mut Self::BR
Rerturns a mutable reference to the borrow reader
Object Safety§
This trait is not object safe.