Enum northstar_runtime::api::model::UmountResult
source · pub enum UmountResult {
Ok {
container: Container,
},
Error {
container: Container,
error: Error,
},
}Expand description
Unmount result
Variants§
Trait Implementations§
source§impl Clone for UmountResult
impl Clone for UmountResult
source§fn clone(&self) -> UmountResult
fn clone(&self) -> UmountResult
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 UmountResult
impl Debug for UmountResult
source§impl<'de> Deserialize<'de> for UmountResult
impl<'de> Deserialize<'de> for UmountResult
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<UmountResult> for UmountResult
impl PartialEq<UmountResult> for UmountResult
source§fn eq(&self, other: &UmountResult) -> bool
fn eq(&self, other: &UmountResult) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for UmountResult
impl Serialize for UmountResult
impl Eq for UmountResult
impl StructuralEq for UmountResult
impl StructuralPartialEq for UmountResult
Auto Trait Implementations§
impl RefUnwindSafe for UmountResult
impl Send for UmountResult
impl Sync for UmountResult
impl Unpin for UmountResult
impl UnwindSafe for UmountResult
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.