pub trait ByteSliceExt {
// Required methods
fn dump(&self) -> Dump<'_>;
fn dump_range(&self, range: impl RangeBounds<usize>) -> Dump<'_>;
}
Required Methods§
fn dump(&self) -> Dump<'_>
fn dump_range(&self, range: impl RangeBounds<usize>) -> Dump<'_>
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.