pub enum ArEntryKind {
Member,
SymbolTable,
StringTable,
Unknown,
}Expand description
Unix ar entry kind labels.
Variants§
Member
Regular archive member.
SymbolTable
Symbol table member.
StringTable
String table member.
Unknown
Unknown or unsupported ar entry kind.
Implementations§
Trait Implementations§
Source§impl Clone for ArEntryKind
impl Clone for ArEntryKind
Source§fn clone(&self) -> ArEntryKind
fn clone(&self) -> ArEntryKind
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 ArEntryKind
impl Debug for ArEntryKind
Source§impl Default for ArEntryKind
impl Default for ArEntryKind
Source§fn default() -> ArEntryKind
fn default() -> ArEntryKind
Returns the “default value” for a type. Read more
Source§impl Display for ArEntryKind
impl Display for ArEntryKind
Source§impl Hash for ArEntryKind
impl Hash for ArEntryKind
Source§impl Ord for ArEntryKind
impl Ord for ArEntryKind
Source§fn cmp(&self, other: &ArEntryKind) -> Ordering
fn cmp(&self, other: &ArEntryKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ArEntryKind
impl PartialEq for ArEntryKind
Source§fn eq(&self, other: &ArEntryKind) -> bool
fn eq(&self, other: &ArEntryKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ArEntryKind
impl PartialOrd for ArEntryKind
impl Copy for ArEntryKind
impl Eq for ArEntryKind
impl StructuralPartialEq for ArEntryKind
Auto Trait Implementations§
impl Freeze for ArEntryKind
impl RefUnwindSafe for ArEntryKind
impl Send for ArEntryKind
impl Sync for ArEntryKind
impl Unpin for ArEntryKind
impl UnsafeUnpin for ArEntryKind
impl UnwindSafe for ArEntryKind
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