pub struct EngineSnapshot {
pub generated_at: DateTime<Utc>,
pub usage_events: Vec<UsageEvent>,
pub focus_rows: Vec<FocusRecord>,
pub limit_windows: Vec<LimitWindow>,
pub providers: Vec<ProviderStatus>,
}Fields§
§generated_at: DateTime<Utc>§usage_events: Vec<UsageEvent>§focus_rows: Vec<FocusRecord>§limit_windows: Vec<LimitWindow>§providers: Vec<ProviderStatus>Trait Implementations§
Source§impl Clone for EngineSnapshot
impl Clone for EngineSnapshot
Source§fn clone(&self) -> EngineSnapshot
fn clone(&self) -> EngineSnapshot
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 EngineSnapshot
impl Debug for EngineSnapshot
Source§impl<'de> Deserialize<'de> for EngineSnapshot
impl<'de> Deserialize<'de> for EngineSnapshot
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 EngineSnapshot
impl PartialEq for EngineSnapshot
Source§fn eq(&self, other: &EngineSnapshot) -> bool
fn eq(&self, other: &EngineSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EngineSnapshot
impl Serialize for EngineSnapshot
impl StructuralPartialEq for EngineSnapshot
Auto Trait Implementations§
impl Freeze for EngineSnapshot
impl RefUnwindSafe for EngineSnapshot
impl Send for EngineSnapshot
impl Sync for EngineSnapshot
impl Unpin for EngineSnapshot
impl UnsafeUnpin for EngineSnapshot
impl UnwindSafe for EngineSnapshot
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