pub struct ProfileSnapshot {
pub user_name: Option<String>,
pub daily_usage: Vec<DailyUsage>,
pub run_stats: RunStats,
pub recent_run_groups: Vec<SessionRunGroup>,
}Expand description
Gateway-owned profile and aggregate usage information.
Fields§
§user_name: Option<String>§daily_usage: Vec<DailyUsage>§run_stats: RunStats§recent_run_groups: Vec<SessionRunGroup>Trait Implementations§
Source§impl Clone for ProfileSnapshot
impl Clone for ProfileSnapshot
Source§fn clone(&self) -> ProfileSnapshot
fn clone(&self) -> ProfileSnapshot
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 ProfileSnapshot
impl Debug for ProfileSnapshot
Source§impl<'de> Deserialize<'de> for ProfileSnapshot
impl<'de> Deserialize<'de> for ProfileSnapshot
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 Eq for ProfileSnapshot
Source§impl PartialEq for ProfileSnapshot
impl PartialEq for ProfileSnapshot
Source§impl Serialize for ProfileSnapshot
impl Serialize for ProfileSnapshot
impl StructuralPartialEq for ProfileSnapshot
Auto Trait Implementations§
impl Freeze for ProfileSnapshot
impl RefUnwindSafe for ProfileSnapshot
impl Send for ProfileSnapshot
impl Sync for ProfileSnapshot
impl Unpin for ProfileSnapshot
impl UnsafeUnpin for ProfileSnapshot
impl UnwindSafe for ProfileSnapshot
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