Struct ndarray::AxisDescription
source · pub struct AxisDescription {
pub axis: Axis,
pub len: usize,
pub stride: isize,
}
Expand description
Description of the axis, its length and its stride.
Fields§
§axis: Axis
Axis identifier (index)
len: usize
Length in count of elements of the current axis
stride: isize
Stride in count of elements of the current axis
Implementations§
Trait Implementations§
source§impl Clone for AxisDescription
impl Clone for AxisDescription
source§impl Debug for AxisDescription
impl Debug for AxisDescription
impl Copy for AxisDescription
Auto Trait Implementations§
impl RefUnwindSafe for AxisDescription
impl Send for AxisDescription
impl Sync for AxisDescription
impl Unpin for AxisDescription
impl UnwindSafe for AxisDescription
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