pub struct SecondaryAutoCommandBuffer<A = StandardCommandBufferAllocator>where
A: CommandBufferAllocator,{ /* private fields */ }Trait Implementations§
Source§impl<A> DeviceOwned for SecondaryAutoCommandBuffer<A>where
A: CommandBufferAllocator,
impl<A> DeviceOwned for SecondaryAutoCommandBuffer<A>where
A: CommandBufferAllocator,
Source§impl<A> SecondaryCommandBufferAbstract for SecondaryAutoCommandBuffer<A>where
A: CommandBufferAllocator,
impl<A> SecondaryCommandBufferAbstract for SecondaryAutoCommandBuffer<A>where
A: CommandBufferAllocator,
Source§fn usage(&self) -> CommandBufferUsage
fn usage(&self) -> CommandBufferUsage
Returns the usage of this command buffer.
Source§fn inheritance_info(&self) -> &CommandBufferInheritanceInfo
fn inheritance_info(&self) -> &CommandBufferInheritanceInfo
Returns a
CommandBufferInheritance value describing the properties that the command
buffer inherits from its parent primary command buffer.Source§fn lock_record(&self) -> Result<(), Box<ValidationError>>
fn lock_record(&self) -> Result<(), Box<ValidationError>>
Checks whether this command buffer is allowed to be recorded to a command buffer,
and if so locks it. Read more
Source§impl<A> VulkanObject for SecondaryAutoCommandBuffer<A>where
A: CommandBufferAllocator,
impl<A> VulkanObject for SecondaryAutoCommandBuffer<A>where
A: CommandBufferAllocator,
Source§type Handle = CommandBuffer
type Handle = CommandBuffer
The type of the object.
Source§fn handle(&self) -> <SecondaryAutoCommandBuffer<A> as VulkanObject>::Handle
fn handle(&self) -> <SecondaryAutoCommandBuffer<A> as VulkanObject>::Handle
Returns the raw Vulkan handle of the object.
Auto Trait Implementations§
impl<A = StandardCommandBufferAllocator> !Freeze for SecondaryAutoCommandBuffer<A>
impl<A = StandardCommandBufferAllocator> !RefUnwindSafe for SecondaryAutoCommandBuffer<A>
impl<A> Send for SecondaryAutoCommandBuffer<A>
impl<A> Sync for SecondaryAutoCommandBuffer<A>
impl<A> Unpin for SecondaryAutoCommandBuffer<A>
impl<A = StandardCommandBufferAllocator> !UnwindSafe for SecondaryAutoCommandBuffer<A>
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
Source§impl<T> DeviceOwnedVulkanObject for Twhere
T: DeviceOwned + VulkanObject,
impl<T> DeviceOwnedVulkanObject for Twhere
T: DeviceOwned + VulkanObject,
Source§fn set_debug_utils_object_name(
&self,
object_name: Option<&str>,
) -> Result<(), VulkanError>
fn set_debug_utils_object_name( &self, object_name: Option<&str>, ) -> Result<(), VulkanError>
Assigns a human-readable name to the object for debugging purposes. Read more