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>)

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§