pub trait UUIDReader { // Required method fn read_uuid(&mut self) -> Result<UUID, Error>; }
A trait that can be applied to a Reader, or other bit stream.
Attempts to read a UUID from this data source, returning the UUID read, or an error if it could not.