pub trait AsBytes { // Required method fn as_bytes(&self) -> &[u8]; }
Basically the same as AsRef<u8>, but we want it for OsString and OsStr, too.
AsRef<u8>