Struct ash::vk::ExternalMemoryPropertiesBuilder
source · #[repr(transparent)]pub struct ExternalMemoryPropertiesBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> ExternalMemoryPropertiesBuilder<'a>
impl<'a> ExternalMemoryPropertiesBuilder<'a>
pub fn external_memory_features( self, external_memory_features: ExternalMemoryFeatureFlags ) -> Self
pub fn export_from_imported_handle_types( self, export_from_imported_handle_types: ExternalMemoryHandleTypeFlags ) -> Self
pub fn compatible_handle_types( self, compatible_handle_types: ExternalMemoryHandleTypeFlags ) -> Self
sourcepub fn build(self) -> ExternalMemoryProperties
pub fn build(self) -> ExternalMemoryProperties
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.