pub enum TraceEventKind {
PrepareStart,
PrepareEnd,
DependencyRequest {
input_index: usize,
requested_frame: usize,
},
Commit,
Output,
}Expand description
Kind of scheduler event recorded by trace executors.
Variants§
PrepareStart
Executor prepare started.
PrepareEnd
Executor prepare completed.
DependencyRequest
Executor requested an input dependency.
Commit
Executor commit completed.
Output
Test observed ordered output frame.
Trait Implementations§
Source§impl Clone for TraceEventKind
impl Clone for TraceEventKind
Source§fn clone(&self) -> TraceEventKind
fn clone(&self) -> TraceEventKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TraceEventKind
impl Debug for TraceEventKind
Source§impl PartialEq for TraceEventKind
impl PartialEq for TraceEventKind
Source§fn eq(&self, other: &TraceEventKind) -> bool
fn eq(&self, other: &TraceEventKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TraceEventKind
impl StructuralPartialEq for TraceEventKind
Auto Trait Implementations§
impl Freeze for TraceEventKind
impl RefUnwindSafe for TraceEventKind
impl Send for TraceEventKind
impl Sync for TraceEventKind
impl Unpin for TraceEventKind
impl UnsafeUnpin for TraceEventKind
impl UnwindSafe for TraceEventKind
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