Struct metrics_sqlite::Session[][src]

pub struct Session {
    pub start_time: f64,
    pub end_time: f64,
    pub duration: Duration,
}

Describes a session, which is a sub-set of metrics data based on time gaps

Fields

start_time: f64

Timestamp session starts at

end_time: f64

Timestamp session ends at

duration: Duration

Duration of session

Implementations

impl Session[src]

pub fn new(start_time: f64, end_time: f64) -> Self[src]

Creates a new session with given start & end, calculating duration from them

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoSql for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.