pub struct PaxExtension {
pub position: u64,
pub kind: PaxKind,
/* private fields */
}Expand description
One positioned parsed pax extended header.
Fields§
§position: u64The absolute byte position of the pax extension header block.
kind: PaxKindWhether this extension has local or global scope.
Implementations§
Trait Implementations§
Source§impl Clone for PaxExtension
impl Clone for PaxExtension
Source§fn clone(&self) -> PaxExtension
fn clone(&self) -> PaxExtension
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 PaxExtension
impl Debug for PaxExtension
impl Eq for PaxExtension
Source§impl PartialEq for PaxExtension
impl PartialEq for PaxExtension
Source§fn eq(&self, other: &PaxExtension) -> bool
fn eq(&self, other: &PaxExtension) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PaxExtension
Auto Trait Implementations§
impl Freeze for PaxExtension
impl RefUnwindSafe for PaxExtension
impl Send for PaxExtension
impl Sync for PaxExtension
impl Unpin for PaxExtension
impl UnsafeUnpin for PaxExtension
impl UnwindSafe for PaxExtension
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