pub enum ApplyDependencyToChildResult {
Applied {
unsatisfied_count: u32,
},
AlreadyApplied,
}Variants§
Applied
Dependency applied, N unsatisfied deps remaining.
AlreadyApplied
Already applied (idempotent).
Trait Implementations§
Source§impl Clone for ApplyDependencyToChildResult
impl Clone for ApplyDependencyToChildResult
Source§fn clone(&self) -> ApplyDependencyToChildResult
fn clone(&self) -> ApplyDependencyToChildResult
Returns a duplicate 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 ApplyDependencyToChildResult
impl Debug for ApplyDependencyToChildResult
Source§impl<'de> Deserialize<'de> for ApplyDependencyToChildResult
impl<'de> Deserialize<'de> for ApplyDependencyToChildResult
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 for ApplyDependencyToChildResult
impl PartialEq for ApplyDependencyToChildResult
Source§fn eq(&self, other: &ApplyDependencyToChildResult) -> bool
fn eq(&self, other: &ApplyDependencyToChildResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ApplyDependencyToChildResult
impl StructuralPartialEq for ApplyDependencyToChildResult
Auto Trait Implementations§
impl Freeze for ApplyDependencyToChildResult
impl RefUnwindSafe for ApplyDependencyToChildResult
impl Send for ApplyDependencyToChildResult
impl Sync for ApplyDependencyToChildResult
impl Unpin for ApplyDependencyToChildResult
impl UnsafeUnpin for ApplyDependencyToChildResult
impl UnwindSafe for ApplyDependencyToChildResult
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