pub struct View<'a, T> { /* private fields */ }
Expand description
A view of an array along a particular axis.
See Array::get_axis
, Array::index_axis
, and Array::iter_axis
for methods to obtain
axis views.
Implementations§
Trait Implementations§
impl<'a, T> Copy for View<'a, T>
impl<'a, T> StructuralPartialEq for View<'a, T>
Auto Trait Implementations§
impl<'a, T> Freeze for View<'a, T>
impl<'a, T> RefUnwindSafe for View<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for View<'a, T>where
T: Sync,
impl<'a, T> Sync for View<'a, T>where
T: Sync,
impl<'a, T> Unpin for View<'a, T>
impl<'a, T> UnwindSafe for View<'a, T>where
T: RefUnwindSafe,
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