[][src]Enum nix::sys::quota::QuotaFmt

#[repr(i32)]
pub enum QuotaFmt {
    QFMT_VFS_OLD,
    QFMT_VFS_V0,
    QFMT_VFS_V1,
}

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

impl Clone for QuotaFmt[src]

impl Copy for QuotaFmt[src]

impl Debug for QuotaFmt[src]

impl Eq for QuotaFmt[src]

impl Hash for QuotaFmt[src]

impl Ord for QuotaFmt[src]

impl PartialEq<QuotaFmt> for QuotaFmt[src]

impl PartialOrd<QuotaFmt> for QuotaFmt[src]

impl StructuralEq for QuotaFmt[src]

impl StructuralPartialEq for QuotaFmt[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.