UUIDWriter

Trait UUIDWriter 

Source
pub trait UUIDWriter {
    // Required method
    fn write_uuid(&mut self, uuid: &UUID) -> Result<(), Error>;
}
Expand description

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

Required Methods§

Source

fn write_uuid(&mut self, uuid: &UUID) -> Result<(), Error>

Attempts to write a UUID to this data source

Implementors§

Source§

impl<T> UUIDWriter for T
where T: MutBits,