pub trait AsByteSlice {
// Required method
fn as_slice(&self) -> &[u8] ⓘ;
}Expand description
Trait to convert a pixel to a sequence of bytes.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".