pub struct AttemptStatisticsData {
pub failure_count: Option<Vec<i32>>,
pub success_count: Option<Vec<i32>>,
}
Fields§
§failure_count: Option<Vec<i32>>
§success_count: Option<Vec<i32>>
Implementations§
Source§impl AttemptStatisticsData
impl AttemptStatisticsData
pub fn new() -> AttemptStatisticsData
Trait Implementations§
Source§impl Clone for AttemptStatisticsData
impl Clone for AttemptStatisticsData
Source§fn clone(&self) -> AttemptStatisticsData
fn clone(&self) -> AttemptStatisticsData
Returns a duplicate of the value. Read more
1.0.0 · 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 AttemptStatisticsData
impl Debug for AttemptStatisticsData
Source§impl Default for AttemptStatisticsData
impl Default for AttemptStatisticsData
Source§fn default() -> AttemptStatisticsData
fn default() -> AttemptStatisticsData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AttemptStatisticsData
impl<'de> Deserialize<'de> for AttemptStatisticsData
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 AttemptStatisticsData
impl PartialEq for AttemptStatisticsData
Source§impl Serialize for AttemptStatisticsData
impl Serialize for AttemptStatisticsData
impl StructuralPartialEq for AttemptStatisticsData
Auto Trait Implementations§
impl Freeze for AttemptStatisticsData
impl RefUnwindSafe for AttemptStatisticsData
impl Send for AttemptStatisticsData
impl Sync for AttemptStatisticsData
impl Unpin for AttemptStatisticsData
impl UnwindSafe for AttemptStatisticsData
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