#[repr(C)]pub struct DevicePrivateDataCreateInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub private_data_slot_request_count: u32,
}Expand description
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_DEVICE_PRIVATE_DATA_CREATE_INFO.
p_next: *const c_voidOptional, may be null.
private_data_slot_request_count: u32Implementations§
Source§impl DevicePrivateDataCreateInfo
impl DevicePrivateDataCreateInfo
Sourcepub fn builder<'a>() -> DevicePrivateDataCreateInfoBuilder<'a>
pub fn builder<'a>() -> DevicePrivateDataCreateInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for DevicePrivateDataCreateInfo
impl Clone for DevicePrivateDataCreateInfo
Source§fn clone(&self) -> DevicePrivateDataCreateInfo
fn clone(&self) -> DevicePrivateDataCreateInfo
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 DevicePrivateDataCreateInfo
impl Debug for DevicePrivateDataCreateInfo
impl Copy for DevicePrivateDataCreateInfo
impl ExtendsDeviceCreateInfo for DevicePrivateDataCreateInfo
Auto Trait Implementations§
impl Freeze for DevicePrivateDataCreateInfo
impl RefUnwindSafe for DevicePrivateDataCreateInfo
impl !Send for DevicePrivateDataCreateInfo
impl !Sync for DevicePrivateDataCreateInfo
impl Unpin for DevicePrivateDataCreateInfo
impl UnsafeUnpin for DevicePrivateDataCreateInfo
impl UnwindSafe for DevicePrivateDataCreateInfo
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