pub trait AsBytes {
// Required method
fn as_bytes(&self) -> &[u8] ⓘ;
}Expand description
Defines a zero-copy representation of Self as a sequence of bytes.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".