pub struct PosixExtraHeader<'a> {
pub prefix: &'a str,
}
Expand description
POSIX ustar extra header.
See parse_tar
for usage.
Fields§
§prefix: &'a str
First part of path name.
If the pathname is longer than 100, it can be split at any /
,
with the first part going here.
Trait Implementations§
Source§impl<'a> Debug for PosixExtraHeader<'a>
impl<'a> Debug for PosixExtraHeader<'a>
Source§impl<'a> PartialEq for PosixExtraHeader<'a>
impl<'a> PartialEq for PosixExtraHeader<'a>
impl<'a> Eq for PosixExtraHeader<'a>
impl<'a> StructuralPartialEq for PosixExtraHeader<'a>
Auto Trait Implementations§
impl<'a> Freeze for PosixExtraHeader<'a>
impl<'a> RefUnwindSafe for PosixExtraHeader<'a>
impl<'a> Send for PosixExtraHeader<'a>
impl<'a> Sync for PosixExtraHeader<'a>
impl<'a> Unpin for PosixExtraHeader<'a>
impl<'a> UnwindSafe for PosixExtraHeader<'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