pub struct TarEntry {
pub header: TarHeader,
pub data: Vec<u8>,
pub header_bytes: [u8; 512],
}Expand description
Tar entry struct
Fields§
§header: TarHeader§data: Vec<u8>§header_bytes: [u8; 512]Trait Implementations§
Auto Trait Implementations§
impl Freeze for TarEntry
impl RefUnwindSafe for TarEntry
impl Send for TarEntry
impl Sync for TarEntry
impl Unpin for TarEntry
impl UnwindSafe for TarEntry
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