pub struct TileAccumulator<EA: Numeric> { /* private fields */ }
Expand description
Contains the accumulated result in a row-major array of size rows x cols
Trait Implementations§
Source§impl<EA: Numeric> CubeType for TileAccumulator<EA>
impl<EA: Numeric> CubeType for TileAccumulator<EA>
type ExpandType = TileAccumulatorExpand<EA>
Source§fn into_mut(scope: &mut Scope, expand: Self::ExpandType) -> Self::ExpandType
fn into_mut(scope: &mut Scope, expand: Self::ExpandType) -> Self::ExpandType
Wrapper around the init method, necessary to type inference.
Auto Trait Implementations§
impl<EA> Freeze for TileAccumulator<EA>
impl<EA> RefUnwindSafe for TileAccumulator<EA>where
EA: RefUnwindSafe,
impl<EA> Send for TileAccumulator<EA>
impl<EA> Sync for TileAccumulator<EA>
impl<EA> Unpin for TileAccumulator<EA>where
EA: Unpin,
impl<EA> UnwindSafe for TileAccumulator<EA>where
EA: 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