#[non_exhaustive]#[repr(i32)]pub enum QuotaFmt {
QFMT_VFS_OLD = 1,
QFMT_VFS_V0 = 2,
QFMT_VFS_V1 = 4,
}
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 = 1
Use the original quota format.
QFMT_VFS_V0 = 2
Use the standard VFS v0 quota format.
Handles 32-bit UIDs/GIDs and quota limits up to 232 bytes/232 inodes.
QFMT_VFS_V1 = 4
Use the VFS v1 quota format.
Handles 32-bit UIDs/GIDs and quota limits of 264 bytes/264 inodes.
Trait Implementations§
source§impl Ord for QuotaFmt
impl Ord for QuotaFmt
source§impl PartialOrd for QuotaFmt
impl PartialOrd for QuotaFmt
impl Copy for QuotaFmt
impl Eq for QuotaFmt
impl StructuralPartialEq for QuotaFmt
Auto Trait Implementations§
impl Freeze for QuotaFmt
impl RefUnwindSafe for QuotaFmt
impl Send for QuotaFmt
impl Sync for QuotaFmt
impl Unpin for QuotaFmt
impl UnwindSafe for QuotaFmt
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)