#[repr(i32)]
#[non_exhaustive]
pub enum QuotaFmt {
QFMT_VFS_OLD,
QFMT_VFS_V0,
QFMT_VFS_V1,
}Expand description
The type of quota format to use.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
QFMT_VFS_OLD
Use the original quota format.
QFMT_VFS_V0
Use the standard VFS v0 quota format.
Handles 32-bit UIDs/GIDs and quota limits up to 232 bytes/232 inodes.
QFMT_VFS_V1
Use the VFS v1 quota format.
Handles 32-bit UIDs/GIDs and quota limits of 264 bytes/264 inodes.
Trait Implementations
sourceimpl Ord for QuotaFmt
impl Ord for QuotaFmt
sourceimpl PartialOrd<QuotaFmt> for QuotaFmt
impl PartialOrd<QuotaFmt> for QuotaFmt
sourcefn partial_cmp(&self, other: &QuotaFmt) -> Option<Ordering>
fn partial_cmp(&self, other: &QuotaFmt) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Copy for QuotaFmt
impl Eq for QuotaFmt
impl StructuralEq for QuotaFmt
impl StructuralPartialEq for QuotaFmt
Auto Trait Implementations
impl RefUnwindSafe for QuotaFmt
impl Send for QuotaFmt
impl Sync for QuotaFmt
impl Unpin for QuotaFmt
impl UnwindSafe for QuotaFmt
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more