pub enum MountOperationResult {
Handled,
Aborted,
Unhandled,
// some variants omitted
}
Variants§
Trait Implementations§
Source§impl Clone for MountOperationResult
impl Clone for MountOperationResult
Source§fn clone(&self) -> MountOperationResult
fn clone(&self) -> MountOperationResult
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MountOperationResult
impl Debug for MountOperationResult
Source§impl Display for MountOperationResult
impl Display for MountOperationResult
Source§impl<'a> FromValue<'a> for MountOperationResult
impl<'a> FromValue<'a> for MountOperationResult
unsafe fn from_value(value: &Value) -> Self
Source§impl<'a> FromValueOptional<'a> for MountOperationResult
impl<'a> FromValueOptional<'a> for MountOperationResult
unsafe fn from_value_optional(value: &Value) -> Option<Self>
Source§impl Hash for MountOperationResult
impl Hash for MountOperationResult
Source§impl Ord for MountOperationResult
impl Ord for MountOperationResult
Source§fn cmp(&self, other: &MountOperationResult) -> Ordering
fn cmp(&self, other: &MountOperationResult) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MountOperationResult
impl PartialEq for MountOperationResult
Source§impl PartialOrd for MountOperationResult
impl PartialOrd for MountOperationResult
Source§impl SetValue for MountOperationResult
impl SetValue for MountOperationResult
Source§impl StaticType for MountOperationResult
impl StaticType for MountOperationResult
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.impl Copy for MountOperationResult
impl Eq for MountOperationResult
impl StructuralPartialEq for MountOperationResult
Auto Trait Implementations§
impl Freeze for MountOperationResult
impl RefUnwindSafe for MountOperationResult
impl Send for MountOperationResult
impl Sync for MountOperationResult
impl Unpin for MountOperationResult
impl UnwindSafe for MountOperationResult
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<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.