#[non_exhaustive]pub struct ExtractedEntryMeta {
pub name: Vec<u8>,
pub file_time: u32,
pub file_attr: u8,
pub is_directory: bool,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Vec<u8>§file_time: u32§file_attr: u8§is_directory: boolTrait Implementations§
Source§impl Clone for ExtractedEntryMeta
impl Clone for ExtractedEntryMeta
Source§fn clone(&self) -> ExtractedEntryMeta
fn clone(&self) -> ExtractedEntryMeta
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExtractedEntryMeta
impl Debug for ExtractedEntryMeta
Source§impl PartialEq for ExtractedEntryMeta
impl PartialEq for ExtractedEntryMeta
Source§fn eq(&self, other: &ExtractedEntryMeta) -> bool
fn eq(&self, other: &ExtractedEntryMeta) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ExtractedEntryMeta
impl StructuralPartialEq for ExtractedEntryMeta
Auto Trait Implementations§
impl Freeze for ExtractedEntryMeta
impl RefUnwindSafe for ExtractedEntryMeta
impl Send for ExtractedEntryMeta
impl Sync for ExtractedEntryMeta
impl Unpin for ExtractedEntryMeta
impl UnsafeUnpin for ExtractedEntryMeta
impl UnwindSafe for ExtractedEntryMeta
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