pub struct FlickerEvent {
pub run_id: String,
pub timestamp_ns: u64,
pub event_type: EventType,
pub severity: Severity,
pub context: EventContext,
pub details: EventDetails,
}Expand description
A detected flicker/tear event.
Fields§
§run_id: StringUnique run identifier.
timestamp_ns: u64Nanosecond timestamp.
event_type: EventTypeType of event.
severity: SeveritySeverity level.
context: EventContextEvent context.
details: EventDetailsAdditional details.
Implementations§
Trait Implementations§
Source§impl Clone for FlickerEvent
impl Clone for FlickerEvent
Source§fn clone(&self) -> FlickerEvent
fn clone(&self) -> FlickerEvent
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 FlickerEvent
impl RefUnwindSafe for FlickerEvent
impl Send for FlickerEvent
impl Sync for FlickerEvent
impl Unpin for FlickerEvent
impl UnsafeUnpin for FlickerEvent
impl UnwindSafe for FlickerEvent
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