pub struct Strided;Expand description
Strided array format type.
Trait Implementations
sourceimpl Format for Strided
impl Format for Strided
type NonUniform = Strided
type NonUniform = Strided
Corresponding format which may have non-uniform stride.
type NonUnitStrided = Strided
type NonUnitStrided = Strided
Corresponding format which may have non-unit inner stride.
type UnitStrided = General
type UnitStrided = General
Corresponding format with unit inner stride.
type Iter<'a, T: 'a> = LinearIter<'a, T>
type Iter<'a, T: 'a> = LinearIter<'a, T>
Array iterator type.
type IterMut<'a, T: 'a> = LinearIterMut<'a, T>
type IterMut<'a, T: 'a> = LinearIterMut<'a, T>
Mutable array iterator type.
sourceconst IS_UNIFORM: bool = false
const IS_UNIFORM: bool = false
True if the format type has uniform stride.
sourceconst IS_UNIT_STRIDED: bool = false
const IS_UNIT_STRIDED: bool = false
True if the format type has unit inner stride.
Auto Trait Implementations
impl RefUnwindSafe for Strided
impl Send for Strided
impl Sync for Strided
impl Unpin for Strided
impl UnwindSafe for Strided
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more