struct Store {
    image_id: Word,
    value_id: Word,
}Expand description
Texel access information for a Store statement.
Fields§
§image_id: WordThe id of the image being written to.
value_id: WordThe 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