enum ExtensionFn<T> {
    Extension(T),
    Promoted,
}Variants§
Extension(T)
The loaded function pointer struct for an extension.
Promoted
The extension was promoted to a core version of Vulkan and the functions on ash’s DeviceV1_x traits should be used.
Auto Trait Implementations§
impl<T> Freeze for ExtensionFn<T>where
    T: Freeze,
impl<T> RefUnwindSafe for ExtensionFn<T>where
    T: RefUnwindSafe,
impl<T> Send for ExtensionFn<T>where
    T: Send,
impl<T> Sync for ExtensionFn<T>where
    T: Sync,
impl<T> Unpin for ExtensionFn<T>where
    T: Unpin,
impl<T> UnwindSafe for ExtensionFn<T>where
    T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more