pub trait ProfilerCommandRecorder {
    fn is_pass(&self) -> bool;
    fn write_timestamp(&mut self, query_set: &QuerySet, query_index: u32);
    fn push_debug_group(&mut self, label: &str);
    fn pop_debug_group(&mut self);
}

Required Methods

Returns true if it’s a pass or false if it’s an encoder

Implementations on Foreign Types

Implementors