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