pub struct ReconciliationRecord {
pub package: String,
pub name: String,
pub version: String,
pub trigger: ReconciliationTrigger,
pub method: Option<ReadinessMethod>,
pub cargo_exit_class: Option<ErrorClass>,
pub outcome: ReconciliationOutcome,
pub operator_action: ReconciliationOperatorAction,
}Expand description
One package-level reconciliation outcome.
Fields§
§package: String§name: String§version: String§trigger: ReconciliationTrigger§method: Option<ReadinessMethod>§cargo_exit_class: Option<ErrorClass>§outcome: ReconciliationOutcome§operator_action: ReconciliationOperatorActionTrait Implementations§
Source§impl Clone for ReconciliationRecord
impl Clone for ReconciliationRecord
Source§fn clone(&self) -> ReconciliationRecord
fn clone(&self) -> ReconciliationRecord
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 ReconciliationRecord
impl Debug for ReconciliationRecord
Source§impl<'de> Deserialize<'de> for ReconciliationRecord
impl<'de> Deserialize<'de> for ReconciliationRecord
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 ReconciliationRecord
impl PartialEq for ReconciliationRecord
Source§fn eq(&self, other: &ReconciliationRecord) -> bool
fn eq(&self, other: &ReconciliationRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ReconciliationRecord
impl Serialize for ReconciliationRecord
impl Eq for ReconciliationRecord
impl StructuralPartialEq for ReconciliationRecord
Auto Trait Implementations§
impl Freeze for ReconciliationRecord
impl RefUnwindSafe for ReconciliationRecord
impl Send for ReconciliationRecord
impl Sync for ReconciliationRecord
impl Unpin for ReconciliationRecord
impl UnsafeUnpin for ReconciliationRecord
impl UnwindSafe for ReconciliationRecord
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.