#[repr(i32)]
pub enum QuotaFmt {
QFMT_VFS_OLD,
QFMT_VFS_V0,
QFMT_VFS_V1,
}
Expand description
The type of quota format to use.
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