pub struct VerdictArgs {
pub verdict: VerdictValue,
pub reason: Option<String>,
pub confidence: Option<ConfidenceValue>,
}Fields§
§verdict: VerdictValue§reason: Option<String>§confidence: Option<ConfidenceValue>How sure the reporter says it is. Absent from a client that predates
the field, and read as medium.
Trait Implementations§
Source§impl Clone for VerdictArgs
impl Clone for VerdictArgs
Source§fn clone(&self) -> VerdictArgs
fn clone(&self) -> VerdictArgs
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 VerdictArgs
impl Debug for VerdictArgs
Source§impl<'de> Deserialize<'de> for VerdictArgs
impl<'de> Deserialize<'de> for VerdictArgs
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 VerdictArgs
Source§impl PartialEq for VerdictArgs
impl PartialEq for VerdictArgs
Source§impl Serialize for VerdictArgs
impl Serialize for VerdictArgs
impl StructuralPartialEq for VerdictArgs
Auto Trait Implementations§
impl Freeze for VerdictArgs
impl RefUnwindSafe for VerdictArgs
impl Send for VerdictArgs
impl Sync for VerdictArgs
impl Unpin for VerdictArgs
impl UnsafeUnpin for VerdictArgs
impl UnwindSafe for VerdictArgs
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.