pub struct ResolveVerdict {
pub conflict_id: ConflictId,
pub accepted: bool,
pub rejection: Option<ResolutionRejection>,
}Expand description
Per-conflict outcome of a resolve call.
Fields§
§conflict_id: ConflictId§accepted: bool§rejection: Option<ResolutionRejection>Trait Implementations§
Source§impl Clone for ResolveVerdict
impl Clone for ResolveVerdict
Source§fn clone(&self) -> ResolveVerdict
fn clone(&self) -> ResolveVerdict
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 ResolveVerdict
impl Debug for ResolveVerdict
Source§impl<'de> Deserialize<'de> for ResolveVerdict
impl<'de> Deserialize<'de> for ResolveVerdict
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 ResolveVerdict
impl PartialEq for ResolveVerdict
Source§fn eq(&self, other: &ResolveVerdict) -> bool
fn eq(&self, other: &ResolveVerdict) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ResolveVerdict
impl Serialize for ResolveVerdict
impl Eq for ResolveVerdict
impl StructuralPartialEq for ResolveVerdict
Auto Trait Implementations§
impl Freeze for ResolveVerdict
impl RefUnwindSafe for ResolveVerdict
impl Send for ResolveVerdict
impl Sync for ResolveVerdict
impl Unpin for ResolveVerdict
impl UnsafeUnpin for ResolveVerdict
impl UnwindSafe for ResolveVerdict
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.