pub struct RenderPassStorageAttachment {
pub offset: Option<u64>,
pub storage: Option<TextureView>,
pub load_op: Option<LoadOp>,
pub store_op: Option<StoreOp>,
pub clear_value: Option<Color>,
/* private fields */
}Fields§
§offset: Option<u64>§storage: Option<TextureView>§load_op: Option<LoadOp>§store_op: Option<StoreOp>§clear_value: Option<Color>Implementations§
Source§impl RenderPassStorageAttachment
impl RenderPassStorageAttachment
pub fn new() -> Self
pub fn with_extension( self, extension: RenderPassStorageAttachmentExtension, ) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RenderPassStorageAttachment
impl RefUnwindSafe for RenderPassStorageAttachment
impl Send for RenderPassStorageAttachment
impl Sync for RenderPassStorageAttachment
impl Unpin for RenderPassStorageAttachment
impl UnsafeUnpin for RenderPassStorageAttachment
impl UnwindSafe for RenderPassStorageAttachment
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