pub trait AsBytes<'a> {
// Required method
fn bytes<const FORMAT: u128>(&'a self) -> Bytes<'a, FORMAT>;
}
Expand description
Trait to simplify creation of a Bytes
object.
Required Methods§
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.