pub struct CreditEntry {
pub ts: DateTime<Utc>,
pub skill: String,
pub skill_version: String,
pub kind: CreditKind,
pub agent: String,
pub evidence: Option<CreditEvidence>,
pub source: String,
}Fields§
§ts: DateTime<Utc>§skill: String§skill_version: String§kind: CreditKind§agent: StringThe crediting subject (the contributor’s agent name).
evidence: Option<CreditEvidence>Free-form evidence keyed by kind. null for Author.
source: StringMirrors EvolutionEvent.source (e.g., "human:alice", "agent://bob").
Trait Implementations§
Source§impl Clone for CreditEntry
impl Clone for CreditEntry
Source§fn clone(&self) -> CreditEntry
fn clone(&self) -> CreditEntry
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 CreditEntry
impl Debug for CreditEntry
Source§impl<'de> Deserialize<'de> for CreditEntry
impl<'de> Deserialize<'de> for CreditEntry
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 CreditEntry
impl PartialEq for CreditEntry
Source§fn eq(&self, other: &CreditEntry) -> bool
fn eq(&self, other: &CreditEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CreditEntry
impl Serialize for CreditEntry
impl StructuralPartialEq for CreditEntry
Auto Trait Implementations§
impl Freeze for CreditEntry
impl RefUnwindSafe for CreditEntry
impl Send for CreditEntry
impl Sync for CreditEntry
impl Unpin for CreditEntry
impl UnsafeUnpin for CreditEntry
impl UnwindSafe for CreditEntry
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