pub struct SessionRow {
pub session_id: String,
pub client_name: Option<String>,
pub client_version: Option<String>,
pub client_platform: Option<String>,
pub started_at: i64,
pub last_seen_at: i64,
pub ended_at: Option<i64>,
pub total_calls: i64,
pub total_errors: i64,
pub is_active: bool,
}Expand description
A single session row.
Fields§
§session_id: String§client_name: Option<String>§client_version: Option<String>§client_platform: Option<String>§started_at: i64§last_seen_at: i64§ended_at: Option<i64>§total_calls: i64§total_errors: i64§is_active: boolTrait Implementations§
Source§impl Clone for SessionRow
impl Clone for SessionRow
Source§fn clone(&self) -> SessionRow
fn clone(&self) -> SessionRow
Returns a duplicate of the value. Read more
1.0.0 · 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 SessionRow
impl Debug for SessionRow
Auto Trait Implementations§
impl Freeze for SessionRow
impl RefUnwindSafe for SessionRow
impl Send for SessionRow
impl Sync for SessionRow
impl Unpin for SessionRow
impl UnsafeUnpin for SessionRow
impl UnwindSafe for SessionRow
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