pub trait CubeDebug: Sized {
// Provided method
fn set_debug_name(&self, scope: &mut Scope, name: &'static str) { ... }
}
Provided Methods§
Sourcefn set_debug_name(&self, scope: &mut Scope, name: &'static str)
fn set_debug_name(&self, scope: &mut Scope, name: &'static str)
Set the debug name of this type’s expansion. Should do nothing for types that don’t appear at runtime
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.