Trait random_access_file::Serialize [] [src]

pub trait Serialize where Self: Sized {
    type DeserializeOutput: Sized;
    fn serialize(&self, to: &mut Write) -> Result<(), Error>;
    fn deserialize(from: &mut Read) -> Result<Self::DeserializeOutput, Error>;
    fn serialized_len(&self) -> u64;
}

Associated Types

Required Methods

Implementors