Trait Marker
pub trait Marker: 'static + WasmNotSendSync { }Available on crate feature
unstable-wgpu-28 only.Expand description
Marker trait used to determine which types uniquely identify a resource.
For example, Device<A> will have the same type of identifier as
Device<B> because Device<T> for any T defines the same maker type.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".