#[repr(transparent)]pub struct DeviceEventInfoEXTBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> DeviceEventInfoEXTBuilder<'a>
impl<'a> DeviceEventInfoEXTBuilder<'a>
pub fn device_event(
self,
device_event: DeviceEventTypeEXT
) -> DeviceEventInfoEXTBuilder<'a>
sourcepub fn build(self) -> DeviceEventInfoEXT
pub fn build(self) -> DeviceEventInfoEXT
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 DeviceEventInfoEXTBuilder<'a>
impl<'a> Deref for DeviceEventInfoEXTBuilder<'a>
type Target = DeviceEventInfoEXT
type Target = DeviceEventInfoEXT
The resulting type after dereferencing.
sourcefn deref(&self) -> &<DeviceEventInfoEXTBuilder<'a> as Deref>::Target
fn deref(&self) -> &<DeviceEventInfoEXTBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for DeviceEventInfoEXTBuilder<'a>
impl<'a> DerefMut for DeviceEventInfoEXTBuilder<'a>
sourcefn deref_mut(&mut self) -> &mut <DeviceEventInfoEXTBuilder<'a> as Deref>::Target
fn deref_mut(&mut self) -> &mut <DeviceEventInfoEXTBuilder<'a> as Deref>::Target
Mutably dereferences the value.
Auto Trait Implementations
impl<'a> RefUnwindSafe for DeviceEventInfoEXTBuilder<'a>
impl<'a> !Send for DeviceEventInfoEXTBuilder<'a>
impl<'a> !Sync for DeviceEventInfoEXTBuilder<'a>
impl<'a> Unpin for DeviceEventInfoEXTBuilder<'a>
impl<'a> UnwindSafe for DeviceEventInfoEXTBuilder<'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