Struct r6tracker::types::sessions_data::Session
source · pub struct Session {
pub started_at: String,
pub ended_at: Option<String>,
pub duration: f64,
pub is_active: bool,
pub matches: Vec<Match>,
pub stats: Vec<Stat>,
pub unknown: HashMap<String, Value>,
}
Fields§
§started_at: String
§ended_at: Option<String>
§duration: f64
§is_active: bool
§matches: Vec<Match>
§stats: Vec<Stat>
§unknown: HashMap<String, Value>
Trait Implementations§
source§impl<'de> Deserialize<'de> for Session
impl<'de> Deserialize<'de> for Session
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
Auto Trait Implementations§
impl RefUnwindSafe for Session
impl Send for Session
impl Sync for Session
impl Unpin for Session
impl UnwindSafe for Session
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