Trait DecodeInto

Source
pub trait DecodeInto {
    // Required method
    fn decode_into<T: Decode>(&mut self) -> Result<T, Error>;
}

Required Methods§

Source

fn decode_into<T: Decode>(&mut self) -> Result<T, Error>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T: Input> DecodeInto for T