struct Store {
image_id: Word,
value_id: Word,
}
Expand description
Texel access information for a Store
statement.
Fields§
§image_id: Word
The id of the image being written to.
value_id: Word
The value we’re going to write to the texel.
Trait Implementations§
source§impl Access for Store
impl Access for Store
source§fn result_type(&self)
fn result_type(&self)
Stores don’t generate any value, so this just returns ()
.
source§fn out_of_bounds_value(&self, _ctx: &mut BlockContext<'_>)
fn out_of_bounds_value(&self, _ctx: &mut BlockContext<'_>)
Stores don’t generate any value, so this just returns ()
.
Auto Trait Implementations§
impl Freeze for Store
impl RefUnwindSafe for Store
impl Send for Store
impl Sync for Store
impl Unpin for Store
impl UnwindSafe for Store
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