#[repr(C)]pub struct SemaphoreSignalInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub semaphore: Semaphore,
pub value: u64,
}Expand description
VkSemaphoreSignalInfo
Provided by VK_BASE_VERSION_1_2.
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_SEMAPHORE_SIGNAL_INFO.
p_next: *const c_voidOptional, may be null.
semaphore: Semaphore§value: u64Implementations§
Source§impl SemaphoreSignalInfo
impl SemaphoreSignalInfo
Sourcepub fn builder<'a>() -> SemaphoreSignalInfoBuilder<'a>
pub fn builder<'a>() -> SemaphoreSignalInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for SemaphoreSignalInfo
impl Clone for SemaphoreSignalInfo
Source§fn clone(&self) -> SemaphoreSignalInfo
fn clone(&self) -> SemaphoreSignalInfo
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 SemaphoreSignalInfo
impl Debug for SemaphoreSignalInfo
Source§impl Default for SemaphoreSignalInfo
impl Default for SemaphoreSignalInfo
Source§fn default() -> SemaphoreSignalInfo
fn default() -> SemaphoreSignalInfo
Returns the “default value” for a type. Read more
impl Copy for SemaphoreSignalInfo
Auto Trait Implementations§
impl Freeze for SemaphoreSignalInfo
impl RefUnwindSafe for SemaphoreSignalInfo
impl !Send for SemaphoreSignalInfo
impl !Sync for SemaphoreSignalInfo
impl Unpin for SemaphoreSignalInfo
impl UnsafeUnpin for SemaphoreSignalInfo
impl UnwindSafe for SemaphoreSignalInfo
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