pub struct ObserveEventLogErrorContext<T> {
pub phase: ObserveEventLogErrorPhase,
pub event: Option<ObserveEvent>,
pub value: Option<ObserveEventFrame<T>>,
}Expand description
ObserveEventLogErrorContext data container.
Fields§
§phase: ObserveEventLogErrorPhasephase field for phase.
event: Option<ObserveEvent>event field for event.
value: Option<ObserveEventFrame<T>>value field for value.
Trait Implementations§
Source§impl<T: Clone> Clone for ObserveEventLogErrorContext<T>
impl<T: Clone> Clone for ObserveEventLogErrorContext<T>
Source§fn clone(&self) -> ObserveEventLogErrorContext<T>
fn clone(&self) -> ObserveEventLogErrorContext<T>
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<T> Freeze for ObserveEventLogErrorContext<T>where
T: Freeze,
impl<T> !RefUnwindSafe for ObserveEventLogErrorContext<T>
impl<T> !Send for ObserveEventLogErrorContext<T>
impl<T> !Sync for ObserveEventLogErrorContext<T>
impl<T> Unpin for ObserveEventLogErrorContext<T>where
T: Unpin,
impl<T> UnsafeUnpin for ObserveEventLogErrorContext<T>where
T: UnsafeUnpin,
impl<T> !UnwindSafe for ObserveEventLogErrorContext<T>
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