pub struct EvidenceTrustSummary {
pub sources: Vec<String>,
pub low_trust_influences: Vec<String>,
pub warnings: Vec<String>,
}Fields§
§sources: Vec<String>§low_trust_influences: Vec<String>§warnings: Vec<String>Trait Implementations§
Source§impl Clone for EvidenceTrustSummary
impl Clone for EvidenceTrustSummary
Source§fn clone(&self) -> EvidenceTrustSummary
fn clone(&self) -> EvidenceTrustSummary
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 EvidenceTrustSummary
impl Debug for EvidenceTrustSummary
Source§impl Default for EvidenceTrustSummary
impl Default for EvidenceTrustSummary
Source§fn default() -> EvidenceTrustSummary
fn default() -> EvidenceTrustSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EvidenceTrustSummarywhere
EvidenceTrustSummary: Default,
impl<'de> Deserialize<'de> for EvidenceTrustSummarywhere
EvidenceTrustSummary: Default,
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 EvidenceTrustSummary
impl PartialEq for EvidenceTrustSummary
Source§fn eq(&self, other: &EvidenceTrustSummary) -> bool
fn eq(&self, other: &EvidenceTrustSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EvidenceTrustSummary
impl Serialize for EvidenceTrustSummary
impl Eq for EvidenceTrustSummary
impl StructuralPartialEq for EvidenceTrustSummary
Auto Trait Implementations§
impl Freeze for EvidenceTrustSummary
impl RefUnwindSafe for EvidenceTrustSummary
impl Send for EvidenceTrustSummary
impl Sync for EvidenceTrustSummary
impl Unpin for EvidenceTrustSummary
impl UnsafeUnpin for EvidenceTrustSummary
impl UnwindSafe for EvidenceTrustSummary
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more