Trait bedrock::VkHandle [] [src]

pub trait VkHandle {
    type Handle;
    fn native_ptr(&self) -> Self::Handle;
}

Wrapping a Vulkan Dispatchable/Nondispatchable Handler

Associated Types

Required Methods

Retrieve an underlying handle

Implementations on Foreign Types

impl<'h, H: VkHandle + ?Sized + 'h> VkHandle for Option<&'h H>
[src]

Unwrapping Option-ed Reference to VkHandles.
Returns "Empty Handle" when the value is None.

[src]

Implementors