pub struct SnapshotRegion {
pub offset: usize,
pub length: usize,
pub section: SnapshotSection,
pub label: String,
pub detail: String,
}Expand description
One annotated byte range. label names the format field (“magic”,
“const[0] tag”, “OpConst 1”); detail explains the decoded value.
Fields§
§offset: usize§length: usize§section: SnapshotSection§label: String§detail: StringTrait Implementations§
Source§impl Clone for SnapshotRegion
impl Clone for SnapshotRegion
Source§fn clone(&self) -> SnapshotRegion
fn clone(&self) -> SnapshotRegion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SnapshotRegion
impl Debug for SnapshotRegion
impl Eq for SnapshotRegion
Source§impl PartialEq for SnapshotRegion
impl PartialEq for SnapshotRegion
Source§impl Serialize for SnapshotRegion
impl Serialize for SnapshotRegion
impl StructuralPartialEq for SnapshotRegion
Auto Trait Implementations§
impl Freeze for SnapshotRegion
impl RefUnwindSafe for SnapshotRegion
impl Send for SnapshotRegion
impl Sync for SnapshotRegion
impl Unpin for SnapshotRegion
impl UnsafeUnpin for SnapshotRegion
impl UnwindSafe for SnapshotRegion
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