pub trait AsBytes<'a> {
// Required method
fn bytes<const FORMAT: u128>(&'a self) -> Bytes<'a, FORMAT>;
}
Available on crate feature
format
and (crate features parse-floats
or parse-integers
) only.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.