pub struct CommandBufferInheritanceRenderPassInfo {
pub subpass: Subpass,
pub framebuffer: Option<Arc<Framebuffer>>,
}Expand description
The render pass context that a secondary command buffer is created for.
Fields§
§subpass: SubpassThe render subpass that this secondary command buffer must be executed within.
There is no default value.
framebuffer: Option<Arc<Framebuffer>>The framebuffer object that will be used when calling the command buffer. This parameter is optional and is an optimization hint for the implementation.
The default value is None.
Implementations§
Source§impl CommandBufferInheritanceRenderPassInfo
impl CommandBufferInheritanceRenderPassInfo
Sourcepub fn subpass(subpass: Subpass) -> CommandBufferInheritanceRenderPassInfo
pub fn subpass(subpass: Subpass) -> CommandBufferInheritanceRenderPassInfo
Returns a CommandBufferInheritanceRenderPassInfo with the specified subpass.
Trait Implementations§
Source§impl Clone for CommandBufferInheritanceRenderPassInfo
impl Clone for CommandBufferInheritanceRenderPassInfo
Source§fn clone(&self) -> CommandBufferInheritanceRenderPassInfo
fn clone(&self) -> CommandBufferInheritanceRenderPassInfo
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 From<CommandBufferInheritanceRenderPassInfo> for CommandBufferInheritanceRenderPassType
impl From<CommandBufferInheritanceRenderPassInfo> for CommandBufferInheritanceRenderPassType
Source§fn from(
val: CommandBufferInheritanceRenderPassInfo,
) -> CommandBufferInheritanceRenderPassType
fn from( val: CommandBufferInheritanceRenderPassInfo, ) -> CommandBufferInheritanceRenderPassType
Converts to this type from the input type.
Source§impl From<Subpass> for CommandBufferInheritanceRenderPassInfo
impl From<Subpass> for CommandBufferInheritanceRenderPassInfo
Source§fn from(subpass: Subpass) -> CommandBufferInheritanceRenderPassInfo
fn from(subpass: Subpass) -> CommandBufferInheritanceRenderPassInfo
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CommandBufferInheritanceRenderPassInfo
impl !RefUnwindSafe for CommandBufferInheritanceRenderPassInfo
impl Send for CommandBufferInheritanceRenderPassInfo
impl Sync for CommandBufferInheritanceRenderPassInfo
impl Unpin for CommandBufferInheritanceRenderPassInfo
impl !UnwindSafe for CommandBufferInheritanceRenderPassInfo
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