pub trait UUIDWriter { // Required method fn write_uuid(&mut self, uuid: &UUID) -> Result<(), Error>; }
A trait that can be applied to a Writer, or other bit stream.
Attempts to write a UUID to this data source