pub struct DecodedSegment {
pub id: [u8; 4],
pub offset: u32,
pub size: u32,
pub flags: u16,
pub version: u8,
}Expand description
Decoded segment entry for inspection.
Fields§
§id: [u8; 4]§offset: u32§size: u32§flags: u16§version: u8Trait Implementations§
Source§impl Clone for DecodedSegment
impl Clone for DecodedSegment
Source§fn clone(&self) -> DecodedSegment
fn clone(&self) -> DecodedSegment
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 DecodedSegment
impl Debug for DecodedSegment
Source§impl Display for DecodedSegment
impl Display for DecodedSegment
impl Copy for DecodedSegment
Auto Trait Implementations§
impl Freeze for DecodedSegment
impl RefUnwindSafe for DecodedSegment
impl Send for DecodedSegment
impl Sync for DecodedSegment
impl Unpin for DecodedSegment
impl UnsafeUnpin for DecodedSegment
impl UnwindSafe for DecodedSegment
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