pub struct MonthlyRollupRequest {
pub session_id: String,
pub start_utc: DateTime<Utc>,
pub end_utc: DateTime<Utc>,
pub source_session_id: Option<String>,
pub parent_node_id: Option<String>,
pub limit: usize,
pub persist: bool,
}Fields§
§session_id: String§start_utc: DateTime<Utc>§end_utc: DateTime<Utc>§source_session_id: Option<String>§parent_node_id: Option<String>§limit: usize§persist: boolImplementations§
Trait Implementations§
Source§impl Clone for MonthlyRollupRequest
impl Clone for MonthlyRollupRequest
Source§fn clone(&self) -> MonthlyRollupRequest
fn clone(&self) -> MonthlyRollupRequest
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 moreAuto Trait Implementations§
impl Freeze for MonthlyRollupRequest
impl RefUnwindSafe for MonthlyRollupRequest
impl Send for MonthlyRollupRequest
impl Sync for MonthlyRollupRequest
impl Unpin for MonthlyRollupRequest
impl UnsafeUnpin for MonthlyRollupRequest
impl UnwindSafe for MonthlyRollupRequest
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