pub trait Deserializable: Sized {
    // Required method
    fn read_from<R: ByteReader>(
        source: &mut R
    ) -> Result<Self, DeserializationError>;

    // Provided methods
    fn read_from_bytes(bytes: &[u8]) -> Result<Self, DeserializationError> { ... }
    fn read_batch_from<R: ByteReader>(
        source: &mut R,
        num_elements: usize
    ) -> Result<Vec<Self>, DeserializationError> { ... }
}
Expand description

Defines how to deserialize Self from bytes.

Required Methods§

source

fn read_from<R: ByteReader>( source: &mut R ) -> Result<Self, DeserializationError>

Reads a sequence of bytes from the provided source, attempts to deserialize these bytes into Self, and returns the result.

Errors

Returns an error if:

  • The source does not contain enough bytes to deserialize Self.
  • Bytes read from the source do not represent a valid value for Self.

Provided Methods§

source

fn read_from_bytes(bytes: &[u8]) -> Result<Self, DeserializationError>

Attempts to deserialize the provided bytes into Self and returns the result.

Errors

Returns an error if:

  • The bytes do not contain enough information to deserialize Self.
  • The bytes do not represent a valid value for Self.

Note: if bytes contains more data than needed to deserialize self, no error is returned.

source

fn read_batch_from<R: ByteReader>( source: &mut R, num_elements: usize ) -> Result<Vec<Self>, DeserializationError>

Reads a sequence of bytes from the provided source, attempts to deserialize these bytes into a vector with the specified number of Self elements, and returns the result.

Errors

Returns an error if:

  • The source does not contain enough bytes to deserialize the specified number of elements.
  • Bytes read from the source do not represent a valid value for Self for any of the elements.

Note: if the error occurs, the reader is not rolled back to the state prior to calling this function.

Object Safety§

This trait is not object safe.

Implementors§