pub struct ActiveEventsSummary {
pub org_events: Vec<ActiveEventInfo>,
pub process_events: Vec<ActiveEventInfo>,
pub tech_events: Vec<ActiveEventInfo>,
}Expand description
Summary of active events at a point in time.
Fields§
§org_events: Vec<ActiveEventInfo>Active organizational events.
process_events: Vec<ActiveEventInfo>Active process events.
tech_events: Vec<ActiveEventInfo>Active technology events.
Trait Implementations§
Source§impl Clone for ActiveEventsSummary
impl Clone for ActiveEventsSummary
Source§fn clone(&self) -> ActiveEventsSummary
fn clone(&self) -> ActiveEventsSummary
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 ActiveEventsSummary
impl Debug for ActiveEventsSummary
Source§impl Default for ActiveEventsSummary
impl Default for ActiveEventsSummary
Source§fn default() -> ActiveEventsSummary
fn default() -> ActiveEventsSummary
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ActiveEventsSummary
impl RefUnwindSafe for ActiveEventsSummary
impl Send for ActiveEventsSummary
impl Sync for ActiveEventsSummary
impl Unpin for ActiveEventsSummary
impl UnwindSafe for ActiveEventsSummary
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