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