#[repr(C)]pub struct ValidationFlagsEXT {
pub s_type: StructureType,
pub p_next: *const c_void,
pub disabled_validation_check_count: u32,
pub p_disabled_validation_checks: *const ValidationCheckEXT,
}Expand description
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_VALIDATION_FLAGS_EXT.
p_next: *const c_voidOptional, may be null.
disabled_validation_check_count: u32Length of p_disabled_validation_checks.
p_disabled_validation_checks: *const ValidationCheckEXTImplementations§
Source§impl ValidationFlagsEXT
impl ValidationFlagsEXT
Sourcepub fn builder<'a>() -> ValidationFlagsEXTBuilder<'a>
pub fn builder<'a>() -> ValidationFlagsEXTBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for ValidationFlagsEXT
impl Clone for ValidationFlagsEXT
Source§fn clone(&self) -> ValidationFlagsEXT
fn clone(&self) -> ValidationFlagsEXT
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 ValidationFlagsEXT
impl Debug for ValidationFlagsEXT
Source§impl Default for ValidationFlagsEXT
impl Default for ValidationFlagsEXT
Source§fn default() -> ValidationFlagsEXT
fn default() -> ValidationFlagsEXT
Returns the “default value” for a type. Read more
impl Copy for ValidationFlagsEXT
impl ExtendsInstanceCreateInfo for ValidationFlagsEXT
Auto Trait Implementations§
impl Freeze for ValidationFlagsEXT
impl RefUnwindSafe for ValidationFlagsEXT
impl !Send for ValidationFlagsEXT
impl !Sync for ValidationFlagsEXT
impl Unpin for ValidationFlagsEXT
impl UnsafeUnpin for ValidationFlagsEXT
impl UnwindSafe for ValidationFlagsEXT
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