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 Eq for LinuxInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.