pub trait EntityKeyBytes {
const BYTE_LEN: usize;
// Required method
fn write_bytes(&self, out: &mut [u8]);
}Expand description
EntityKeyBytes
Required Associated Constants§
Required Methods§
Sourcefn write_bytes(&self, out: &mut [u8])
fn write_bytes(&self, out: &mut [u8])
Write bytes into the provided buffer.
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.