pub struct UStarHeader<'a> {
pub uname: &'a str,
pub gname: &'a str,
pub devmajor: u64,
pub devminor: u64,
pub extra: UStarExtraHeader<'a>,
}Expand description
Ustar header.
Fields§
§uname: &'a strUser name.
gname: &'a strGroup name.
devmajor: u64Major number for character device of block device.
devminor: u64Minor number for character device of block device.
extra: UStarExtraHeader<'a>Extra header of ustar header.
Trait Implementations§
Source§impl<'a> Debug for UStarHeader<'a>
impl<'a> Debug for UStarHeader<'a>
Source§impl<'a> PartialEq for UStarHeader<'a>
impl<'a> PartialEq for UStarHeader<'a>
impl<'a> Eq for UStarHeader<'a>
impl<'a> StructuralPartialEq for UStarHeader<'a>
Auto Trait Implementations§
impl<'a> Freeze for UStarHeader<'a>
impl<'a> RefUnwindSafe for UStarHeader<'a>
impl<'a> Send for UStarHeader<'a>
impl<'a> Sync for UStarHeader<'a>
impl<'a> Unpin for UStarHeader<'a>
impl<'a> UnwindSafe for UStarHeader<'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