pub struct NDDimension {
pub size: usize,
pub offset: usize,
pub binning: usize,
pub reverse: bool,
}Expand description
A single dimension of an NDArray.
Fields§
§size: usize§offset: usize§binning: usize§reverse: boolImplementations§
Trait Implementations§
Source§impl Clone for NDDimension
impl Clone for NDDimension
Source§fn clone(&self) -> NDDimension
fn clone(&self) -> NDDimension
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for NDDimension
impl RefUnwindSafe for NDDimension
impl Send for NDDimension
impl Sync for NDDimension
impl Unpin for NDDimension
impl UnsafeUnpin for NDDimension
impl UnwindSafe for NDDimension
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