pub struct LimitTrendChange {
pub at: DateTime<Utc>,
pub account_id: Option<String>,
pub plan_type: Option<String>,
pub limit_id: Option<String>,
pub window: String,
pub window_minutes: i64,
pub used_percent: f64,
pub remaining_percent: f64,
pub delta_used_percent: Option<f64>,
pub resets_at: DateTime<Utc>,
pub kind: String,
}Fields§
§at: DateTime<Utc>§account_id: Option<String>§plan_type: Option<String>§limit_id: Option<String>§window: String§window_minutes: i64§used_percent: f64§remaining_percent: f64§delta_used_percent: Option<f64>§resets_at: DateTime<Utc>§kind: StringTrait Implementations§
Source§impl Clone for LimitTrendChange
impl Clone for LimitTrendChange
Source§fn clone(&self) -> LimitTrendChange
fn clone(&self) -> LimitTrendChange
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 LimitTrendChange
impl Debug for LimitTrendChange
Source§impl PartialEq for LimitTrendChange
impl PartialEq for LimitTrendChange
Source§fn eq(&self, other: &LimitTrendChange) -> bool
fn eq(&self, other: &LimitTrendChange) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LimitTrendChange
impl Serialize for LimitTrendChange
impl StructuralPartialEq for LimitTrendChange
Auto Trait Implementations§
impl Freeze for LimitTrendChange
impl RefUnwindSafe for LimitTrendChange
impl Send for LimitTrendChange
impl Sync for LimitTrendChange
impl Unpin for LimitTrendChange
impl UnsafeUnpin for LimitTrendChange
impl UnwindSafe for LimitTrendChange
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