pub struct Shape<D> { /* private fields */ }
Expand description
A contiguous array shape of n dimensions.
Either c- or f- memory ordered (c a.k.a row major is the default).
Implementations§
Trait Implementations§
source§impl<D> ShapeBuilder for Shape<D>where
D: Dimension,
impl<D> ShapeBuilder for Shape<D>where D: Dimension,
impl<D: Copy> Copy for Shape<D>
Auto Trait Implementations§
impl<D> RefUnwindSafe for Shape<D>where D: RefUnwindSafe,
impl<D> Send for Shape<D>where D: Send,
impl<D> Sync for Shape<D>where D: Sync,
impl<D> Unpin for Shape<D>where D: Unpin,
impl<D> UnwindSafe for Shape<D>where D: 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