pub struct MemorySkillAdvisory {Show 13 fields
pub schema_version: u32,
pub id: String,
pub fingerprint: String,
pub dismissed: bool,
pub candidate_kind: MemorySkillCandidateKind,
pub slug: String,
pub title: String,
pub source_commit: String,
pub truth_label: Verdict,
pub occurrence_count: usize,
pub occurrence_refs: Vec<EvidenceRef>,
pub reason: String,
pub created_at_unix: u64,
}Fields§
§schema_version: u32§id: String§fingerprint: String§dismissed: bool§candidate_kind: MemorySkillCandidateKind§slug: String§title: String§source_commit: String§truth_label: Verdict§occurrence_count: usize§occurrence_refs: Vec<EvidenceRef>§reason: String§created_at_unix: u64Trait Implementations§
Source§impl Clone for MemorySkillAdvisory
impl Clone for MemorySkillAdvisory
Source§fn clone(&self) -> MemorySkillAdvisory
fn clone(&self) -> MemorySkillAdvisory
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 MemorySkillAdvisory
impl Debug for MemorySkillAdvisory
Source§impl<'de> Deserialize<'de> for MemorySkillAdvisory
impl<'de> Deserialize<'de> for MemorySkillAdvisory
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 MemorySkillAdvisory
Source§impl PartialEq for MemorySkillAdvisory
impl PartialEq for MemorySkillAdvisory
Source§fn eq(&self, other: &MemorySkillAdvisory) -> bool
fn eq(&self, other: &MemorySkillAdvisory) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MemorySkillAdvisory
impl Serialize for MemorySkillAdvisory
impl StructuralPartialEq for MemorySkillAdvisory
Auto Trait Implementations§
impl Freeze for MemorySkillAdvisory
impl RefUnwindSafe for MemorySkillAdvisory
impl Send for MemorySkillAdvisory
impl Sync for MemorySkillAdvisory
impl Unpin for MemorySkillAdvisory
impl UnsafeUnpin for MemorySkillAdvisory
impl UnwindSafe for MemorySkillAdvisory
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