Struct ash::vk::ExternalFencePropertiesBuilder
source · pub struct ExternalFencePropertiesBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> ExternalFencePropertiesBuilder<'a>
impl<'a> ExternalFencePropertiesBuilder<'a>
pub fn export_from_imported_handle_types( self, export_from_imported_handle_types: ExternalFenceHandleTypeFlags ) -> Self
pub fn compatible_handle_types( self, compatible_handle_types: ExternalFenceHandleTypeFlags ) -> Self
pub fn external_fence_features( self, external_fence_features: ExternalFenceFeatureFlags ) -> Self
sourcepub fn build(self) -> ExternalFenceProperties
pub fn build(self) -> ExternalFenceProperties
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref
targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.
Trait Implementations§
source§impl<'a> Deref for ExternalFencePropertiesBuilder<'a>
impl<'a> Deref for ExternalFencePropertiesBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for ExternalFencePropertiesBuilder<'a>
impl<'a> RefUnwindSafe for ExternalFencePropertiesBuilder<'a>
impl<'a> !Send for ExternalFencePropertiesBuilder<'a>
impl<'a> !Sync for ExternalFencePropertiesBuilder<'a>
impl<'a> Unpin for ExternalFencePropertiesBuilder<'a>
impl<'a> UnwindSafe for ExternalFencePropertiesBuilder<'a>
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