#[repr(C)]pub struct CommandBufferBeginInfo {
pub sType: StructureType,
pub pNext: *const c_void,
pub flags: CommandBufferUsageFlags,
pub pInheritanceInfo: *const CommandBufferInheritanceInfo,
}Fields§
§sType: StructureType§pNext: *const c_void§flags: CommandBufferUsageFlags§pInheritanceInfo: *const CommandBufferInheritanceInfoImplementations§
Source§impl CommandBufferBeginInfo
impl CommandBufferBeginInfo
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: CommandBufferUsageFlags) -> Self
pub fn pInheritanceInfo( self, pInheritanceInfo: *const CommandBufferInheritanceInfo, ) -> Self
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
Source§fn default() -> CommandBufferBeginInfo
fn default() -> CommandBufferBeginInfo
Returns the “default value” for a type. Read more
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 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