pub trait AsBytes {
// Required method
fn as_bytes(&self) -> &[u8];
}Expand description
Basically the same as AsRef<u8>, but we want it for OsString and OsStr,
too.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".