pub struct Operations<V> {
pub load: LoadOp<V>,
pub store: StoreOp,
}Expand description
Defines the load and store operations for a single render pass attachment.
Fields§
§load: LoadOp<V>The operation to perform at the beginning of the pass.
store: StoreOpThe operation to perform at the end of the pass.
Trait Implementations§
Auto Trait Implementations§
impl<V> Freeze for Operations<V>where
V: Freeze,
impl<V> RefUnwindSafe for Operations<V>where
V: RefUnwindSafe,
impl<V> Send for Operations<V>where
V: Send,
impl<V> Sync for Operations<V>where
V: Sync,
impl<V> Unpin for Operations<V>where
V: Unpin,
impl<V> UnwindSafe for Operations<V>where
V: UnwindSafe,
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