pub struct OutcomeCounts {
pub scored: u64,
pub unscorable: u64,
pub invalid_response: u64,
pub provider_failure: u64,
}Fields§
§scored: u64§unscorable: u64§invalid_response: u64§provider_failure: u64Trait Implementations§
Source§impl Clone for OutcomeCounts
impl Clone for OutcomeCounts
Source§fn clone(&self) -> OutcomeCounts
fn clone(&self) -> OutcomeCounts
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 OutcomeCounts
impl Debug for OutcomeCounts
Source§impl Default for OutcomeCounts
impl Default for OutcomeCounts
Source§fn default() -> OutcomeCounts
fn default() -> OutcomeCounts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OutcomeCounts
impl<'de> Deserialize<'de> for OutcomeCounts
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 OutcomeCounts
Source§impl PartialEq for OutcomeCounts
impl PartialEq for OutcomeCounts
Source§impl Serialize for OutcomeCounts
impl Serialize for OutcomeCounts
impl StructuralPartialEq for OutcomeCounts
Auto Trait Implementations§
impl Freeze for OutcomeCounts
impl RefUnwindSafe for OutcomeCounts
impl Send for OutcomeCounts
impl Sync for OutcomeCounts
impl Unpin for OutcomeCounts
impl UnsafeUnpin for OutcomeCounts
impl UnwindSafe for OutcomeCounts
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