[][src]Struct ash::vk::KhrBindMemory2Fn

pub struct KhrBindMemory2Fn {
    pub bind_buffer_memory2_khr: extern "system" fn(device: Device, bind_info_count: u32, p_bind_infos: *const BindBufferMemoryInfo) -> Result,
    pub bind_image_memory2_khr: extern "system" fn(device: Device, bind_info_count: u32, p_bind_infos: *const BindImageMemoryInfo) -> Result,
}

Fields

bind_buffer_memory2_khr: extern "system" fn(device: Device, bind_info_count: u32, p_bind_infos: *const BindBufferMemoryInfo) -> Resultbind_image_memory2_khr: extern "system" fn(device: Device, bind_info_count: u32, p_bind_infos: *const BindImageMemoryInfo) -> Result

Implementations

impl KhrBindMemory2Fn[src]

pub fn name() -> &'static CStr[src]

impl KhrBindMemory2Fn[src]

pub fn load<F>(_f: F) -> Self where
    F: FnMut(&CStr) -> *const c_void
[src]

pub unsafe fn bind_buffer_memory2_khr(
    &self,
    device: Device,
    bind_info_count: u32,
    p_bind_infos: *const BindBufferMemoryInfo
) -> Result
[src]

pub unsafe fn bind_image_memory2_khr(
    &self,
    device: Device,
    bind_info_count: u32,
    p_bind_infos: *const BindImageMemoryInfo
) -> Result
[src]

Trait Implementations

impl Clone for KhrBindMemory2Fn[src]

impl Send for KhrBindMemory2Fn[src]

impl Sync for KhrBindMemory2Fn[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.