pub struct LinuxInfo {
pub distro: String,
pub version: String,
pub has_mergerfs: bool,
pub mergerfs_version: Option<String>,
pub fuse_available: bool,
pub has_fusermount: bool,
pub mergerfs_path: Option<PathBuf>,
pub fusermount_path: Option<PathBuf>,
}Fields§
§distro: String§version: String§has_mergerfs: bool§mergerfs_version: Option<String>§fuse_available: bool§has_fusermount: bool§mergerfs_path: Option<PathBuf>§fusermount_path: Option<PathBuf>Trait Implementations§
impl StructuralPartialEq for LinuxInfo
Auto Trait Implementations§
impl Freeze for LinuxInfo
impl RefUnwindSafe for LinuxInfo
impl Send for LinuxInfo
impl Sync for LinuxInfo
impl Unpin for LinuxInfo
impl UnsafeUnpin for LinuxInfo
impl UnwindSafe for LinuxInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more