pub struct HexDumpOptions {
pub start_offset: Option<usize>,
pub length: Option<usize>,
pub bytes_per_line: usize,
}Expand description
十六进制转储选项
Fields§
§start_offset: Option<usize>起始偏移
length: Option<usize>长度限制
bytes_per_line: usize每行字节数
Implementations§
Trait Implementations§
Source§impl Clone for HexDumpOptions
impl Clone for HexDumpOptions
Source§fn clone(&self) -> HexDumpOptions
fn clone(&self) -> HexDumpOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HexDumpOptions
impl Debug for HexDumpOptions
Source§impl Default for HexDumpOptions
impl Default for HexDumpOptions
Source§fn default() -> HexDumpOptions
fn default() -> HexDumpOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for HexDumpOptions
impl RefUnwindSafe for HexDumpOptions
impl Send for HexDumpOptions
impl Sync for HexDumpOptions
impl Unpin for HexDumpOptions
impl UnsafeUnpin for HexDumpOptions
impl UnwindSafe for HexDumpOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more