pub struct AttemptStatisticsResponse {
pub data: Box<AttemptStatisticsData>,
pub end_date: String,
pub period: StatisticsPeriod,
pub start_date: String,
}
Fields§
§data: Box<AttemptStatisticsData>
§end_date: String
§period: StatisticsPeriod
§start_date: String
Implementations§
Source§impl AttemptStatisticsResponse
impl AttemptStatisticsResponse
pub fn new( data: AttemptStatisticsData, end_date: String, period: StatisticsPeriod, start_date: String, ) -> AttemptStatisticsResponse
Trait Implementations§
Source§impl Clone for AttemptStatisticsResponse
impl Clone for AttemptStatisticsResponse
Source§fn clone(&self) -> AttemptStatisticsResponse
fn clone(&self) -> AttemptStatisticsResponse
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 AttemptStatisticsResponse
impl Debug for AttemptStatisticsResponse
Source§impl Default for AttemptStatisticsResponse
impl Default for AttemptStatisticsResponse
Source§fn default() -> AttemptStatisticsResponse
fn default() -> AttemptStatisticsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AttemptStatisticsResponse
impl<'de> Deserialize<'de> for AttemptStatisticsResponse
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 StructuralPartialEq for AttemptStatisticsResponse
Auto Trait Implementations§
impl Freeze for AttemptStatisticsResponse
impl RefUnwindSafe for AttemptStatisticsResponse
impl Send for AttemptStatisticsResponse
impl Sync for AttemptStatisticsResponse
impl Unpin for AttemptStatisticsResponse
impl UnwindSafe for AttemptStatisticsResponse
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