Struct unrar_async::Entry
source · pub struct Entry {
pub filename: String,
pub flags: Flags,
pub unpacked_size: u32,
pub file_crc: u32,
pub file_time: u32,
pub method: u32,
pub file_attr: u32,
pub next_volume: Option<String>,
}
Expand description
A single entry contained in an archive - usually, a file or directory
Fields§
§filename: String
§flags: Flags
§unpacked_size: u32
§file_crc: u32
§file_time: u32
§method: u32
§file_attr: u32
§next_volume: Option<String>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
Blanket Implementations§
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
source§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString
. Read more