pub trait FileSystemFlags {
// Required methods
fn supports_sparse_files(&self) -> bool;
fn supports_block_cloning(&self) -> Option<bool>;
}Required Methods§
fn supports_sparse_files(&self) -> bool
Sourcefn supports_block_cloning(&self) -> Option<bool>
fn supports_block_cloning(&self) -> Option<bool>
Returns Some if we know for certain, and None if there’s no indication from the system.