pub struct ArchiveEntry {
pub path: PathBuf,
pub is_file: bool,
pub is_dir: bool,
pub is_symlink: bool,
pub executable: bool,
pub size: u64,
pub unsafe_reason: Option<String>,
}Fields§
§path: PathBuf§is_file: bool§is_dir: bool§is_symlink: bool§executable: bool§size: u64§unsafe_reason: Option<String>Trait Implementations§
Source§impl Clone for ArchiveEntry
impl Clone for ArchiveEntry
Source§impl Debug for ArchiveEntry
impl Debug for ArchiveEntry
Source§impl<'de> Deserialize<'de> for ArchiveEntry
impl<'de> Deserialize<'de> for ArchiveEntry
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
Auto Trait Implementations§
impl Freeze for ArchiveEntry
impl RefUnwindSafe for ArchiveEntry
impl Send for ArchiveEntry
impl Sync for ArchiveEntry
impl Unpin for ArchiveEntry
impl UnsafeUnpin for ArchiveEntry
impl UnwindSafe for ArchiveEntry
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