pub enum MtreeKeyword {
Type,
Uid,
Gid,
Mode,
Size,
Time,
Sha256Digest,
Unknown,
}Expand description
mtree keyword labels.
Variants§
Type
Entry type keyword.
Uid
User ID keyword.
Gid
Group ID keyword.
Mode
Mode keyword.
Size
Size keyword.
Time
Time keyword.
Sha256Digest
SHA-256 digest keyword.
Unknown
Unknown or unsupported keyword.
Implementations§
Trait Implementations§
Source§impl Clone for MtreeKeyword
impl Clone for MtreeKeyword
Source§fn clone(&self) -> MtreeKeyword
fn clone(&self) -> MtreeKeyword
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 MtreeKeyword
impl Debug for MtreeKeyword
Source§impl Default for MtreeKeyword
impl Default for MtreeKeyword
Source§fn default() -> MtreeKeyword
fn default() -> MtreeKeyword
Returns the “default value” for a type. Read more
Source§impl Display for MtreeKeyword
impl Display for MtreeKeyword
Source§impl Hash for MtreeKeyword
impl Hash for MtreeKeyword
Source§impl Ord for MtreeKeyword
impl Ord for MtreeKeyword
Source§fn cmp(&self, other: &MtreeKeyword) -> Ordering
fn cmp(&self, other: &MtreeKeyword) -> 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 MtreeKeyword
impl PartialEq for MtreeKeyword
Source§fn eq(&self, other: &MtreeKeyword) -> bool
fn eq(&self, other: &MtreeKeyword) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MtreeKeyword
impl PartialOrd for MtreeKeyword
impl Copy for MtreeKeyword
impl Eq for MtreeKeyword
impl StructuralPartialEq for MtreeKeyword
Auto Trait Implementations§
impl Freeze for MtreeKeyword
impl RefUnwindSafe for MtreeKeyword
impl Send for MtreeKeyword
impl Sync for MtreeKeyword
impl Unpin for MtreeKeyword
impl UnsafeUnpin for MtreeKeyword
impl UnwindSafe for MtreeKeyword
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