pub enum CreditEvidence {
Author,
Mutator {
from_version: String,
diff_summary: String,
},
Recombiner {
role: String,
child: String,
},
Propagator {
from_agent: String,
fitness_at_install: f64,
samples_at_install: u64,
},
}Variants§
Trait Implementations§
Source§impl Clone for CreditEvidence
impl Clone for CreditEvidence
Source§fn clone(&self) -> CreditEvidence
fn clone(&self) -> CreditEvidence
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 CreditEvidence
impl Debug for CreditEvidence
Source§impl<'de> Deserialize<'de> for CreditEvidence
impl<'de> Deserialize<'de> for CreditEvidence
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 CreditEvidence
impl PartialEq for CreditEvidence
Source§fn eq(&self, other: &CreditEvidence) -> bool
fn eq(&self, other: &CreditEvidence) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CreditEvidence
impl Serialize for CreditEvidence
impl StructuralPartialEq for CreditEvidence
Auto Trait Implementations§
impl Freeze for CreditEvidence
impl RefUnwindSafe for CreditEvidence
impl Send for CreditEvidence
impl Sync for CreditEvidence
impl Unpin for CreditEvidence
impl UnsafeUnpin for CreditEvidence
impl UnwindSafe for CreditEvidence
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