pub struct DependencyResolutionV1 {
pub states: BTreeMap<String, DependencyState>,
pub premise_status: PremiseStatus,
pub invalid_lineage: bool,
pub unresolved_conflict: bool,
pub budget_exhausted: bool,
pub visited_nodes: Vec<String>,
}Fields§
§states: BTreeMap<String, DependencyState>§premise_status: PremiseStatus§invalid_lineage: bool§unresolved_conflict: bool§budget_exhausted: bool§visited_nodes: Vec<String>Implementations§
Source§impl DependencyResolutionV1
impl DependencyResolutionV1
pub fn status(&self, id: &str) -> Option<DependencyState>
Trait Implementations§
Source§impl Clone for DependencyResolutionV1
impl Clone for DependencyResolutionV1
Source§fn clone(&self) -> DependencyResolutionV1
fn clone(&self) -> DependencyResolutionV1
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DependencyResolutionV1
impl Debug for DependencyResolutionV1
impl Eq for DependencyResolutionV1
Source§impl PartialEq for DependencyResolutionV1
impl PartialEq for DependencyResolutionV1
impl StructuralPartialEq for DependencyResolutionV1
Auto Trait Implementations§
impl Freeze for DependencyResolutionV1
impl RefUnwindSafe for DependencyResolutionV1
impl Send for DependencyResolutionV1
impl Sync for DependencyResolutionV1
impl Unpin for DependencyResolutionV1
impl UnsafeUnpin for DependencyResolutionV1
impl UnwindSafe for DependencyResolutionV1
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§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.