pub struct TarEntry {
pub path: String,
pub kind: TarEntryKind,
pub offset: u64,
pub size: u64,
pub mode: u32,
pub uid: u32,
pub gid: u32,
pub mtime: i64,
pub link_target: Option<String>,
}Fields§
§path: String§kind: TarEntryKind§offset: u64§size: u64§mode: u32§uid: u32§gid: u32§mtime: i64§link_target: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for TarEntry
impl<'de> Deserialize<'de> for TarEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TarEntry
impl StructuralPartialEq for TarEntry
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