pub struct GetSessionConfig {
pub num_recent_events: Option<f64>,
pub after_timestamp: Option<f64>,
}Expand description
The configuration of getting a session.
Fields§
§num_recent_events: Option<f64>The number of recent events to retrieve.
after_timestamp: Option<f64>Retrieve events after this timestamp.
Trait Implementations§
Source§impl Clone for GetSessionConfig
impl Clone for GetSessionConfig
Source§fn clone(&self) -> GetSessionConfig
fn clone(&self) -> GetSessionConfig
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 GetSessionConfig
impl Debug for GetSessionConfig
Source§impl Default for GetSessionConfig
impl Default for GetSessionConfig
Source§fn default() -> GetSessionConfig
fn default() -> GetSessionConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetSessionConfig
impl RefUnwindSafe for GetSessionConfig
impl Send for GetSessionConfig
impl Sync for GetSessionConfig
impl Unpin for GetSessionConfig
impl UnwindSafe for GetSessionConfig
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