#[repr(C)]pub struct CommandBufferBeginInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: CommandBufferUsageFlags,
pub p_inheritance_info: *const CommandBufferInheritanceInfo,
}Expand description
VkCommandBufferBeginInfo
Provided by VK_BASE_VERSION_1_0.
§Extended By
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO.
p_next: *const c_voidOptional, may be null.
flags: CommandBufferUsageFlags§p_inheritance_info: *const CommandBufferInheritanceInfoOptional, may be null.
Implementations§
Source§impl CommandBufferBeginInfo
impl CommandBufferBeginInfo
Sourcepub fn builder<'a>() -> CommandBufferBeginInfoBuilder<'a>
pub fn builder<'a>() -> CommandBufferBeginInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for CommandBufferBeginInfo
impl Clone for CommandBufferBeginInfo
Source§fn clone(&self) -> CommandBufferBeginInfo
fn clone(&self) -> CommandBufferBeginInfo
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 CommandBufferBeginInfo
impl Debug for CommandBufferBeginInfo
Source§impl Default for CommandBufferBeginInfo
impl Default for CommandBufferBeginInfo
impl Copy for CommandBufferBeginInfo
Auto Trait Implementations§
impl Freeze for CommandBufferBeginInfo
impl RefUnwindSafe for CommandBufferBeginInfo
impl !Send for CommandBufferBeginInfo
impl !Sync for CommandBufferBeginInfo
impl Unpin for CommandBufferBeginInfo
impl UnsafeUnpin for CommandBufferBeginInfo
impl UnwindSafe for CommandBufferBeginInfo
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