pub type Result<T> = Result<T, MountError>;Expand description
Result alias used throughout the mount crate.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(MountError),
}pub type Result<T> = Result<T, MountError>;Result alias used throughout the mount crate.
pub enum Result<T> {
Ok(T),
Err(MountError),
}