pub struct MemorySkillCandidate {Show 23 fields
pub schema_version: u32,
pub id: String,
pub fingerprint: String,
pub learning_key: String,
pub status: CandidateStatus,
pub candidate_kind: MemorySkillCandidateKind,
pub scope: String,
pub source_commit: String,
pub source_claim: String,
pub truth_label: Verdict,
pub ledger_entry_ref: EvidenceRef,
pub source_run_ref: EvidenceRef,
pub occurrence_count: usize,
pub occurrence_refs: Vec<EvidenceRef>,
pub slug: String,
pub title: String,
pub description: String,
pub when_to_use: Vec<String>,
pub procedure_steps: Vec<String>,
pub pitfalls: Vec<String>,
pub verification_steps: Vec<String>,
pub evidence: Vec<EvidenceRef>,
pub created_at_unix: u64,
}Fields§
§schema_version: u32§id: String§fingerprint: String§learning_key: String§status: CandidateStatus§candidate_kind: MemorySkillCandidateKind§scope: String§source_commit: String§source_claim: String§truth_label: Verdict§ledger_entry_ref: EvidenceRef§source_run_ref: EvidenceRef§occurrence_count: usize§occurrence_refs: Vec<EvidenceRef>§slug: String§title: String§description: String§when_to_use: Vec<String>§procedure_steps: Vec<String>§pitfalls: Vec<String>§verification_steps: Vec<String>§evidence: Vec<EvidenceRef>§created_at_unix: u64Trait Implementations§
Source§impl Clone for MemorySkillCandidate
impl Clone for MemorySkillCandidate
Source§fn clone(&self) -> MemorySkillCandidate
fn clone(&self) -> MemorySkillCandidate
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 MemorySkillCandidate
impl Debug for MemorySkillCandidate
Source§impl<'de> Deserialize<'de> for MemorySkillCandidate
impl<'de> Deserialize<'de> for MemorySkillCandidate
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
impl Eq for MemorySkillCandidate
Source§impl PartialEq for MemorySkillCandidate
impl PartialEq for MemorySkillCandidate
Source§fn eq(&self, other: &MemorySkillCandidate) -> bool
fn eq(&self, other: &MemorySkillCandidate) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MemorySkillCandidate
impl Serialize for MemorySkillCandidate
impl StructuralPartialEq for MemorySkillCandidate
Auto Trait Implementations§
impl Freeze for MemorySkillCandidate
impl RefUnwindSafe for MemorySkillCandidate
impl Send for MemorySkillCandidate
impl Sync for MemorySkillCandidate
impl Unpin for MemorySkillCandidate
impl UnsafeUnpin for MemorySkillCandidate
impl UnwindSafe for MemorySkillCandidate
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