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
impl RefUnwindSafe for Super
impl Send for Super
impl Sync for Super
impl Unpin for Super
impl UnwindSafe for Super
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