pub struct Subpass<'a, B>where
B: Backend,{
pub index: usize,
pub main_pass: &'a <B as Backend>::RenderPass,
}
Expand description
A sub-pass borrow of a pass.
Fields§
§index: usize
Index of the subpass
main_pass: &'a <B as Backend>::RenderPass
Main pass borrow.
Trait Implementations§
impl<'a, B> Copy for Subpass<'a, B>where
B: Backend,
impl<'a, B> Eq for Subpass<'a, B>where
B: Backend,
Auto Trait Implementations§
impl<'a, B> Freeze for Subpass<'a, B>
impl<'a, B> RefUnwindSafe for Subpass<'a, B>
impl<'a, B> Send for Subpass<'a, B>
impl<'a, B> Sync for Subpass<'a, B>
impl<'a, B> Unpin for Subpass<'a, B>
impl<'a, B> UnwindSafe for Subpass<'a, B>
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