Struct ash::vk::definitions::ExternalFenceProperties
source · #[repr(C)]pub struct ExternalFenceProperties<'a> {
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,
pub _marker: PhantomData<&'a ()>,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *mut c_void
§export_from_imported_handle_types: ExternalFenceHandleTypeFlags
§compatible_handle_types: ExternalFenceHandleTypeFlags
§external_fence_features: ExternalFenceFeatureFlags
§_marker: PhantomData<&'a ()>
Implementations§
source§impl<'a> ExternalFenceProperties<'a>
impl<'a> ExternalFenceProperties<'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
Trait Implementations§
source§impl<'a> Clone for ExternalFenceProperties<'a>
impl<'a> Clone for ExternalFenceProperties<'a>
source§fn clone(&self) -> ExternalFenceProperties<'a>
fn clone(&self) -> ExternalFenceProperties<'a>
Returns a copy 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<'a> Debug for ExternalFenceProperties<'a>
impl<'a> Debug for ExternalFenceProperties<'a>
source§impl Default for ExternalFenceProperties<'_>
impl Default for ExternalFenceProperties<'_>
source§impl<'a> TaggedStructure for ExternalFenceProperties<'a>
impl<'a> TaggedStructure for ExternalFenceProperties<'a>
const STRUCTURE_TYPE: StructureType = StructureType::EXTERNAL_FENCE_PROPERTIES
impl<'a> Copy for ExternalFenceProperties<'a>
impl Send for ExternalFenceProperties<'_>
impl Sync for ExternalFenceProperties<'_>
Auto Trait Implementations§
impl<'a> Freeze for ExternalFenceProperties<'a>
impl<'a> RefUnwindSafe for ExternalFenceProperties<'a>
impl<'a> Unpin for ExternalFenceProperties<'a>
impl<'a> UnwindSafe for ExternalFenceProperties<'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