pub trait FSConfig:
    Send
    + Sync
    + 'static {
    // Required method
    fn options(&self) -> Options<'_>;
    // Provided methods
    fn is_multi_volume(&self) -> bool { ... }
    fn disk_format(&self) -> DiskFormat { ... }
}Expand description
Describes the configuration for a particular filesystem.
Required Methods§
Provided Methods§
Sourcefn is_multi_volume(&self) -> bool
 
fn is_multi_volume(&self) -> bool
Whether the filesystem supports multiple volumes.