Enum block_utils::Filesystem [] [src]

pub enum Filesystem {
    Btrfs {
        metadata_profile: MetadataProfile,
        leaf_size: u64,
        node_size: u64,
    },
    Ext4 {
        inode_size: u64,
        reserved_blocks_percentage: u8,
    },
    Xfs {
        inode_size: Option<u64>,
        force: bool,
    },
}

This allows you to tweak some settings when you're formatting the filesystem

Variants

Fields of Btrfs

Fields of Ext4

Fields of Xfs

Methods

impl Filesystem
[src]

Create a new Filesystem with defaults.

Trait Implementations

impl Debug for Filesystem
[src]

Formats the value using the given formatter.