pub struct RateLimitSamplesReport {
pub start: DateTime<Utc>,
pub end: DateTime<Utc>,
pub sessions_dir: String,
pub samples: Vec<RateLimitSample>,
pub diagnostics: RateLimitDiagnostics,
}Fields§
§start: DateTime<Utc>§end: DateTime<Utc>§sessions_dir: String§samples: Vec<RateLimitSample>§diagnostics: RateLimitDiagnosticsTrait Implementations§
Source§impl Clone for RateLimitSamplesReport
impl Clone for RateLimitSamplesReport
Source§fn clone(&self) -> RateLimitSamplesReport
fn clone(&self) -> RateLimitSamplesReport
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 moreAuto Trait Implementations§
impl Freeze for RateLimitSamplesReport
impl RefUnwindSafe for RateLimitSamplesReport
impl Send for RateLimitSamplesReport
impl Sync for RateLimitSamplesReport
impl Unpin for RateLimitSamplesReport
impl UnsafeUnpin for RateLimitSamplesReport
impl UnwindSafe for RateLimitSamplesReport
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