pub struct EventGroupStatus {
pub events: Option<Vec<DatasetEventStreamStatus>>,
pub name: String,
}
Expand description
Represents the status for an event group
Fields§
§events: Option<Vec<DatasetEventStreamStatus>>
Array of event statuses that describe the status of each event in the event group.
name: String
The name of the event group. Must be unique within the status.eventGroups array. This name is used to correlate between the spec and status event group information.
Trait Implementations§
Source§impl Clone for EventGroupStatus
impl Clone for EventGroupStatus
Source§fn clone(&self) -> EventGroupStatus
fn clone(&self) -> EventGroupStatus
Returns a copy 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 EventGroupStatus
impl Debug for EventGroupStatus
Source§impl PartialEq for EventGroupStatus
impl PartialEq for EventGroupStatus
impl StructuralPartialEq for EventGroupStatus
Auto Trait Implementations§
impl Freeze for EventGroupStatus
impl RefUnwindSafe for EventGroupStatus
impl Send for EventGroupStatus
impl Sync for EventGroupStatus
impl Unpin for EventGroupStatus
impl UnwindSafe for EventGroupStatus
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