pub enum SessionErrored {
Individual(Uuid),
Aggregated(u32),
}
Expand description
Contains information about errored sessions. See SessionLike
.
Variants§
Individual(Uuid)
Contains the UUID for a single errored session.
Aggregated(u32)
Contains the number of all errored sessions in an aggregate. errored, crashed, abnormal all count towards errored sessions.
Auto Trait Implementations§
impl Freeze for SessionErrored
impl RefUnwindSafe for SessionErrored
impl Send for SessionErrored
impl Sync for SessionErrored
impl Unpin for SessionErrored
impl UnwindSafe for SessionErrored
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