pub trait HexDumpOperations {
// Required methods
fn hex_dump<P: AsRef<Path>>(
&self,
path: P,
options: &HexDumpOptions,
) -> Result<String>;
fn hex_dump_tag<P: AsRef<Path>>(
&self,
path: P,
tag: TagId,
) -> Result<String>;
}Expand description
十六进制转储 trait
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.