pub trait VkHandleExt: VkHandle {
// Provided method
fn eq_handle(&self, other: &Self) -> bool
where Self::Handle: VkRawHandle { ... }
}
Expand description
Extension methods(not dyn compatible) for VkHandle
Provided Methods§
Sourcefn eq_handle(&self, other: &Self) -> boolwhere
Self::Handle: VkRawHandle,
fn eq_handle(&self, other: &Self) -> boolwhere
Self::Handle: VkRawHandle,
Checks the equality between vulkan objects by their handle value.
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.