UuidPacker

Trait UuidPacker 

Source
pub trait UuidPacker {
    // Required method
    fn uuid(&mut self, u: impl Into<Uuid>);
}
Expand description

Packer extension functions.

Required Methods§

Source

fn uuid(&mut self, u: impl Into<Uuid>)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl UuidPacker for Packer<'_>

Source§

fn uuid(&mut self, u: impl Into<Uuid>)

Writes either a 16- or a 128-bit UUID at the current index.

Implementors§