pub struct UsageRollupCoverage {
pub requested_days: usize,
pub all_loaded: bool,
pub loaded_first_day: Option<i32>,
pub loaded_last_day: Option<i32>,
pub loaded_days_with_data: usize,
pub loaded_requests: u64,
pub window_first_day: Option<i32>,
pub window_last_day: Option<i32>,
pub window_days_with_data: usize,
pub window_requests: u64,
pub window_exceeds_loaded_start: bool,
}Fields§
§requested_days: usize§all_loaded: bool§loaded_first_day: Option<i32>§loaded_last_day: Option<i32>§loaded_days_with_data: usize§loaded_requests: u64§window_first_day: Option<i32>§window_last_day: Option<i32>§window_days_with_data: usize§window_requests: u64§window_exceeds_loaded_start: boolTrait Implementations§
Source§impl Clone for UsageRollupCoverage
impl Clone for UsageRollupCoverage
Source§fn clone(&self) -> UsageRollupCoverage
fn clone(&self) -> UsageRollupCoverage
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 UsageRollupCoverage
impl Debug for UsageRollupCoverage
Source§impl Default for UsageRollupCoverage
impl Default for UsageRollupCoverage
Source§fn default() -> UsageRollupCoverage
fn default() -> UsageRollupCoverage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UsageRollupCoverage
impl<'de> Deserialize<'de> for UsageRollupCoverage
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 UsageRollupCoverage
impl PartialEq for UsageRollupCoverage
Source§fn eq(&self, other: &UsageRollupCoverage) -> bool
fn eq(&self, other: &UsageRollupCoverage) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UsageRollupCoverage
impl Serialize for UsageRollupCoverage
impl Eq for UsageRollupCoverage
impl StructuralPartialEq for UsageRollupCoverage
Auto Trait Implementations§
impl Freeze for UsageRollupCoverage
impl RefUnwindSafe for UsageRollupCoverage
impl Send for UsageRollupCoverage
impl Sync for UsageRollupCoverage
impl Unpin for UsageRollupCoverage
impl UnsafeUnpin for UsageRollupCoverage
impl UnwindSafe for UsageRollupCoverage
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,
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.