#[repr(transparent)]pub struct ExternalFencePropertiesBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> ExternalFencePropertiesBuilder<'a>
impl<'a> ExternalFencePropertiesBuilder<'a>
pub fn export_from_imported_handle_types(
self,
export_from_imported_handle_types: ExternalFenceHandleTypeFlags
) -> ExternalFencePropertiesBuilder<'a>
pub fn compatible_handle_types(
self,
compatible_handle_types: ExternalFenceHandleTypeFlags
) -> ExternalFencePropertiesBuilder<'a>
pub fn external_fence_features(
self,
external_fence_features: ExternalFenceFeatureFlags
) -> ExternalFencePropertiesBuilder<'a>
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
sourceimpl<'a> Deref for ExternalFencePropertiesBuilder<'a>
impl<'a> Deref for ExternalFencePropertiesBuilder<'a>
type Target = ExternalFenceProperties
type Target = ExternalFenceProperties
The resulting type after dereferencing.
sourcefn deref(&self) -> &<ExternalFencePropertiesBuilder<'a> as Deref>::Target
fn deref(&self) -> &<ExternalFencePropertiesBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for ExternalFencePropertiesBuilder<'a>
impl<'a> DerefMut for ExternalFencePropertiesBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <ExternalFencePropertiesBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <ExternalFencePropertiesBuilder<'a> as Deref>::Target
Mutably dereferences the value.
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more