#[repr(C)]pub struct ExternalFenceProperties {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub export_from_imported_handle_types: ExternalFenceHandleTypeFlags,
pub compatible_handle_types: ExternalFenceHandleTypeFlags,
pub external_fence_features: ExternalFenceFeatureFlags,
}Expand description
VkExternalFenceProperties
Provided by VK_BASE_VERSION_1_1.
Returned only*, filled by Vulkan, not constructed by the application.
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_EXTERNAL_FENCE_PROPERTIES.
p_next: *mut c_voidOptional, may be null.
export_from_imported_handle_types: ExternalFenceHandleTypeFlags§compatible_handle_types: ExternalFenceHandleTypeFlags§external_fence_features: ExternalFenceFeatureFlagsImplementations§
Source§impl ExternalFenceProperties
impl ExternalFenceProperties
Sourcepub fn builder<'a>() -> ExternalFencePropertiesBuilder<'a>
pub fn builder<'a>() -> ExternalFencePropertiesBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for ExternalFenceProperties
impl Clone for ExternalFenceProperties
Source§fn clone(&self) -> ExternalFenceProperties
fn clone(&self) -> ExternalFenceProperties
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExternalFenceProperties
impl Debug for ExternalFenceProperties
Source§impl Default for ExternalFenceProperties
impl Default for ExternalFenceProperties
impl Copy for ExternalFenceProperties
Auto Trait Implementations§
impl Freeze for ExternalFenceProperties
impl RefUnwindSafe for ExternalFenceProperties
impl !Send for ExternalFenceProperties
impl !Sync for ExternalFenceProperties
impl Unpin for ExternalFenceProperties
impl UnsafeUnpin for ExternalFenceProperties
impl UnwindSafe for ExternalFenceProperties
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