Struct ash::vk::ExternalSemaphorePropertiesBuilder
source · pub struct ExternalSemaphorePropertiesBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> ExternalSemaphorePropertiesBuilder<'a>
impl<'a> ExternalSemaphorePropertiesBuilder<'a>
pub fn export_from_imported_handle_types( self, export_from_imported_handle_types: ExternalSemaphoreHandleTypeFlags ) -> Self
pub fn compatible_handle_types( self, compatible_handle_types: ExternalSemaphoreHandleTypeFlags ) -> Self
pub fn external_semaphore_features( self, external_semaphore_features: ExternalSemaphoreFeatureFlags ) -> Self
sourcepub fn build(self) -> ExternalSemaphoreProperties
pub fn build(self) -> ExternalSemaphoreProperties
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 ExternalSemaphorePropertiesBuilder<'a>
impl<'a> Deref for ExternalSemaphorePropertiesBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for ExternalSemaphorePropertiesBuilder<'a>
impl<'a> RefUnwindSafe for ExternalSemaphorePropertiesBuilder<'a>
impl<'a> !Send for ExternalSemaphorePropertiesBuilder<'a>
impl<'a> !Sync for ExternalSemaphorePropertiesBuilder<'a>
impl<'a> Unpin for ExternalSemaphorePropertiesBuilder<'a>
impl<'a> UnwindSafe for ExternalSemaphorePropertiesBuilder<'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