pub struct SubpassBeginInfo {
pub contents: SubpassContents,
pub _ne: NonExhaustive,
}Expand description
Parameters to begin a new subpass within a render pass.
Fields§
§contents: SubpassContentsWhat kinds of commands will be recorded in the subpass.
The default value is SubpassContents::Inline.
_ne: NonExhaustiveTrait 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
Auto Trait Implementations§
impl Freeze for SubpassBeginInfo
impl RefUnwindSafe for SubpassBeginInfo
impl Send for SubpassBeginInfo
impl Sync for SubpassBeginInfo
impl Unpin 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