pub enum DataOwner {
Pax(PaxKind),
Gnu(GnuKind),
Member,
}Expand description
The payload entry to which a data block belongs.
Variants§
Pax(PaxKind)
Payload bytes belonging to a pax extended header.
Gnu(GnuKind)
Payload bytes belonging to a GNU metadata extension.
Member
Payload bytes belonging to an ordinary archive member.
Trait Implementations§
impl Copy for DataOwner
impl Eq for DataOwner
impl StructuralPartialEq for DataOwner
Auto Trait Implementations§
impl Freeze for DataOwner
impl RefUnwindSafe for DataOwner
impl Send for DataOwner
impl Sync for DataOwner
impl Unpin for DataOwner
impl UnsafeUnpin for DataOwner
impl UnwindSafe for DataOwner
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