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