Trait rustls::internal::msgs::codec::Codec[][src]

pub trait Codec: Debug + Sized {
    fn encode(&self, bytes: &mut Vec<u8>);
fn read(_: &mut Reader) -> Option<Self>; fn get_encoding(&self) -> Vec<u8> { ... }
fn read_bytes(bytes: &[u8]) -> Option<Self> { ... } }

Things we can encode and read from a Reader.

Required Methods

Encode yourself by appending onto bytes.

Decode yourself by fiddling with the Reader. Return Some if it worked, None if not.

Provided Methods

Convenience function to get the results of encode().

Read one of these from the front of bytes and return it.

Implementations on Foreign Types

impl Codec for u8
[src]

impl Codec for u16
[src]

impl Codec for u32
[src]

impl Codec for u64
[src]

Implementors