pub struct TarEntry {
pub name: String,
pub mode: u32,
pub modified_unixtime: u64,
pub size: u64,
pub data: Vec<u8>,
}Fields§
§name: String§mode: u32§modified_unixtime: u64§size: u64§data: Vec<u8>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 UnsafeUnpin 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