#[repr(C)]pub struct DeviceDeviceMemoryReportCreateInfoEXT {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: u32,
pub pfn_user_callback: Option<unsafe extern "system" fn(*const DeviceMemoryReportCallbackDataEXT, *mut c_void)>,
pub p_user_data: *mut c_void,
}Expand description
VkDeviceDeviceMemoryReportCreateInfoEXT
Provided by VK_EXT_device_memory_report.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_DEVICE_DEVICE_MEMORY_REPORT_CREATE_INFO_EXT.
p_next: *const c_voidOptional, may be null.
flags: u32§pfn_user_callback: Option<unsafe extern "system" fn(*const DeviceMemoryReportCallbackDataEXT, *mut c_void)>§p_user_data: *mut c_voidOptional, may be null.
Implementations§
Source§impl DeviceDeviceMemoryReportCreateInfoEXT
impl DeviceDeviceMemoryReportCreateInfoEXT
Sourcepub fn builder<'a>() -> DeviceDeviceMemoryReportCreateInfoEXTBuilder<'a>
pub fn builder<'a>() -> DeviceDeviceMemoryReportCreateInfoEXTBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for DeviceDeviceMemoryReportCreateInfoEXT
impl Clone for DeviceDeviceMemoryReportCreateInfoEXT
Source§fn clone(&self) -> DeviceDeviceMemoryReportCreateInfoEXT
fn clone(&self) -> DeviceDeviceMemoryReportCreateInfoEXT
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 Default for DeviceDeviceMemoryReportCreateInfoEXT
impl Default for DeviceDeviceMemoryReportCreateInfoEXT
Source§fn default() -> DeviceDeviceMemoryReportCreateInfoEXT
fn default() -> DeviceDeviceMemoryReportCreateInfoEXT
Returns the “default value” for a type. Read more
impl Copy for DeviceDeviceMemoryReportCreateInfoEXT
impl ExtendsDeviceCreateInfo for DeviceDeviceMemoryReportCreateInfoEXT
Auto Trait Implementations§
impl Freeze for DeviceDeviceMemoryReportCreateInfoEXT
impl RefUnwindSafe for DeviceDeviceMemoryReportCreateInfoEXT
impl !Send for DeviceDeviceMemoryReportCreateInfoEXT
impl !Sync for DeviceDeviceMemoryReportCreateInfoEXT
impl Unpin for DeviceDeviceMemoryReportCreateInfoEXT
impl UnsafeUnpin for DeviceDeviceMemoryReportCreateInfoEXT
impl UnwindSafe for DeviceDeviceMemoryReportCreateInfoEXT
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