Trait Decodable

Source
pub trait Decodable: Sized {
    type Error;

    // Required method
    fn decode(buf: &[u8]) -> Result<Self, Self::Error>;
}
Expand description

A decodable type can be created from a byte buffer. The type returned is separate (copied) from the buffer once decoded.

Required Associated Types§

Required Methods§

Source

fn decode(buf: &[u8]) -> Result<Self, Self::Error>

Decodes into a new object, or returns an 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§

impl Decodable for ServiceCapability

impl Decodable for SimpleResponse

impl Decodable for StreamInformation

impl Decodable for Header

impl Decodable for HeaderSet

impl Decodable for RequestPacket

impl Decodable for FlowControlParams

impl Decodable for ModemStatusParams

impl Decodable for MuxCommand

impl Decodable for NonSupportedCommandParams

impl Decodable for ParameterNegotiationParams

impl Decodable for RemoteLineStatusParams

impl Decodable for RemotePortNegotiationParams

impl Decodable for TestCommandParams

impl Decodable for UserData