pub enum Super {
    Single,
    SingleReconf,
    Keyed,
    Independent,
    BlockDev,
}
Expand description

Type of superblock keying.

It determines how C’s fs_context_operations::get_tree is implemented.

Variants

Single

Only one such superblock may exist.

SingleReconf

As Super::Single, but reconfigure if it exists.

Keyed

Superblocks with different data pointers may exist.

Independent

Multiple independent superblocks may exist.

BlockDev

Uses a block device.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.