pub trait UUIDReader {
    // Required method
    fn read_uuid(&mut self) -> Result<UUID, Error>;
}
Expand description

A trait that can be applied to a Reader, or other bit stream.

Required Methods§

source

fn read_uuid(&mut self) -> Result<UUID, Error>

Attempts to read a UUID from this data source, returning the UUID read, or an error if it could not.

Implementors§

source§

impl<T> UUIDReader for T
where T: Bits,