pub struct PosixHeader<'a> {
pub name: &'a str,
pub mode: u64,
pub uid: u64,
pub gid: u64,
pub size: u64,
pub mtime: u64,
pub chksum: &'a str,
pub typeflag: TypeFlag,
pub linkname: &'a str,
pub ustar: ExtraHeader<'a>,
}
Fields§
§name: &'a str
§mode: u64
§uid: u64
§gid: u64
§size: u64
§mtime: u64
§chksum: &'a str
§typeflag: TypeFlag
§linkname: &'a str
§ustar: ExtraHeader<'a>
Trait Implementations§
Source§impl<'a> Debug for PosixHeader<'a>
impl<'a> Debug for PosixHeader<'a>
Source§impl<'a> PartialEq for PosixHeader<'a>
impl<'a> PartialEq for PosixHeader<'a>
impl<'a> Eq for PosixHeader<'a>
impl<'a> StructuralPartialEq for PosixHeader<'a>
Auto Trait Implementations§
impl<'a> Freeze for PosixHeader<'a>
impl<'a> RefUnwindSafe for PosixHeader<'a>
impl<'a> Send for PosixHeader<'a>
impl<'a> Sync for PosixHeader<'a>
impl<'a> Unpin for PosixHeader<'a>
impl<'a> UnwindSafe for PosixHeader<'a>
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