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,