#[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
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
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>
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 moreimpl 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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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