pub trait Level:
Copy
+ Default
+ Debug
+ 'static {
// Required method
fn raw_level(&self) -> Level;
}
Expand description
Type-level buffer level flag. It defines whether buffer can be submitted to the command queues or executed as part of the primary buffers.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.