pub enum TarEntryKind {
Regular,
Directory,
Symlink,
Hardlink,
}Variants§
Trait Implementations§
Source§impl Clone for TarEntryKind
impl Clone for TarEntryKind
Source§fn clone(&self) -> TarEntryKind
fn clone(&self) -> TarEntryKind
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 TarEntryKind
impl Debug for TarEntryKind
Source§impl PartialEq for TarEntryKind
impl PartialEq for TarEntryKind
Source§fn eq(&self, other: &TarEntryKind) -> bool
fn eq(&self, other: &TarEntryKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TarEntryKind
impl Eq for TarEntryKind
impl StructuralPartialEq for TarEntryKind
Auto Trait Implementations§
impl Freeze for TarEntryKind
impl RefUnwindSafe for TarEntryKind
impl Send for TarEntryKind
impl Sync for TarEntryKind
impl Unpin for TarEntryKind
impl UnsafeUnpin for TarEntryKind
impl UnwindSafe for TarEntryKind
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