pub struct PacketCandidateClaim {
pub id: String,
pub assertion: String,
pub assertion_type: String,
pub evidence_artifact_ids: Vec<String>,
pub source_refs: Vec<String>,
pub conditions: Vec<String>,
pub confidence: f64,
pub caveats: Vec<String>,
}Fields§
§id: String§assertion: String§assertion_type: String§evidence_artifact_ids: Vec<String>§source_refs: Vec<String>§conditions: Vec<String>§confidence: f64§caveats: Vec<String>Trait Implementations§
Source§impl Clone for PacketCandidateClaim
impl Clone for PacketCandidateClaim
Source§fn clone(&self) -> PacketCandidateClaim
fn clone(&self) -> PacketCandidateClaim
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 PacketCandidateClaim
impl Debug for PacketCandidateClaim
Source§impl<'de> Deserialize<'de> for PacketCandidateClaim
impl<'de> Deserialize<'de> for PacketCandidateClaim
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 PacketCandidateClaim
impl PartialEq for PacketCandidateClaim
Source§fn eq(&self, other: &PacketCandidateClaim) -> bool
fn eq(&self, other: &PacketCandidateClaim) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PacketCandidateClaim
impl Serialize for PacketCandidateClaim
impl StructuralPartialEq for PacketCandidateClaim
Auto Trait Implementations§
impl Freeze for PacketCandidateClaim
impl RefUnwindSafe for PacketCandidateClaim
impl Send for PacketCandidateClaim
impl Sync for PacketCandidateClaim
impl Unpin for PacketCandidateClaim
impl UnsafeUnpin for PacketCandidateClaim
impl UnwindSafe for PacketCandidateClaim
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