#[repr(C)]pub struct DebugReportCallbackCreateInfoEXT {
pub sType: StructureType,
pub pNext: *const c_void,
pub flags: DebugReportFlagsEXT,
pub pfnCallback: u64,
pub pUserData: *mut c_void,
}Fields§
§sType: StructureType§pNext: *const c_void§flags: DebugReportFlagsEXT§pfnCallback: u64§pUserData: *mut c_voidImplementations§
Source§impl DebugReportCallbackCreateInfoEXT
impl DebugReportCallbackCreateInfoEXT
pub fn new() -> Self
pub fn sType(self, sType: StructureType) -> Self
pub fn pNext(self, pNext: *const c_void) -> Self
pub fn flags(self, flags: DebugReportFlagsEXT) -> Self
pub fn pfnCallback(self, pfnCallback: u64) -> Self
pub fn pUserData(self, pUserData: *mut c_void) -> Self
Trait Implementations§
Source§impl Clone for DebugReportCallbackCreateInfoEXT
impl Clone for DebugReportCallbackCreateInfoEXT
Source§fn clone(&self) -> DebugReportCallbackCreateInfoEXT
fn clone(&self) -> DebugReportCallbackCreateInfoEXT
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 DebugReportCallbackCreateInfoEXT
impl Default for DebugReportCallbackCreateInfoEXT
Source§fn default() -> DebugReportCallbackCreateInfoEXT
fn default() -> DebugReportCallbackCreateInfoEXT
Returns the “default value” for a type. Read more
impl Copy for DebugReportCallbackCreateInfoEXT
Auto Trait Implementations§
impl Freeze for DebugReportCallbackCreateInfoEXT
impl RefUnwindSafe for DebugReportCallbackCreateInfoEXT
impl !Send for DebugReportCallbackCreateInfoEXT
impl !Sync for DebugReportCallbackCreateInfoEXT
impl Unpin for DebugReportCallbackCreateInfoEXT
impl UnwindSafe for DebugReportCallbackCreateInfoEXT
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