#[repr(u32)]pub enum EntryMessage {
Show 14 variants
SearchPruneDir = 10,
SearchExclude = 11,
SearchFail = 12,
ExtractBegin = 20,
ExtractEnd = 21,
ExtractFail = 22,
ExtractAttributes = 23,
ExtractXat = 24,
ExtractAcl = 25,
EncodeScanning = 30,
EncodeWriting = 31,
ConvertExclude = 40,
ProcessExclude = 50,
DecodeReading = 60,
}Expand description
Wraps AppleArchive entry message identifiers.
Variants§
SearchPruneDir = 10
Wraps the SearchPruneDir variant of EntryMessage.
SearchExclude = 11
Wraps the SearchExclude variant of EntryMessage.
SearchFail = 12
Wraps the SearchFail variant of EntryMessage.
ExtractBegin = 20
Wraps the ExtractBegin variant of EntryMessage.
ExtractEnd = 21
Wraps the ExtractEnd variant of EntryMessage.
ExtractFail = 22
Wraps the ExtractFail variant of EntryMessage.
ExtractAttributes = 23
Wraps the ExtractAttributes variant of EntryMessage.
ExtractXat = 24
Wraps the ExtractXat variant of EntryMessage.
ExtractAcl = 25
Wraps the ExtractAcl variant of EntryMessage.
EncodeScanning = 30
Wraps the EncodeScanning variant of EntryMessage.
EncodeWriting = 31
Wraps the EncodeWriting variant of EntryMessage.
ConvertExclude = 40
Wraps the ConvertExclude variant of EntryMessage.
ProcessExclude = 50
Wraps the ProcessExclude variant of EntryMessage.
DecodeReading = 60
Wraps the DecodeReading variant of EntryMessage.
Trait Implementations§
Source§impl Clone for EntryMessage
impl Clone for EntryMessage
Source§fn clone(&self) -> EntryMessage
fn clone(&self) -> EntryMessage
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 EntryMessage
impl Debug for EntryMessage
Source§impl Hash for EntryMessage
impl Hash for EntryMessage
Source§impl PartialEq for EntryMessage
impl PartialEq for EntryMessage
Source§fn eq(&self, other: &EntryMessage) -> bool
fn eq(&self, other: &EntryMessage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for EntryMessage
impl Eq for EntryMessage
impl StructuralPartialEq for EntryMessage
Auto Trait Implementations§
impl Freeze for EntryMessage
impl RefUnwindSafe for EntryMessage
impl Send for EntryMessage
impl Sync for EntryMessage
impl Unpin for EntryMessage
impl UnsafeUnpin for EntryMessage
impl UnwindSafe for EntryMessage
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