[][src]Struct building_blocks_storage::array::Stride

pub struct Stride(pub usize);

The most efficient coordinates for slice-backed lattice maps. A single number that translates directly to a slice offset.

Trait Implementations

impl Add<Stride> for Stride[src]

type Output = Self

The resulting type after applying the + operator.

impl AddAssign<Stride> for Stride[src]

impl Clone for Stride[src]

impl Copy for Stride[src]

impl Debug for Stride[src]

impl Eq for Stride[src]

impl<N, T> ForEach<N, Stride> for ArrayN<N, T> where
    Self: Sized + Array<N> + Get<Stride, Data = T> + GetUnchecked<Stride, Data = T>, 
[src]

type Data = T

impl<N, T> ForEachMut<N, Stride> for ArrayN<N, T> where
    Self: Sized + Array<N> + GetMut<Stride, Data = T> + GetUncheckedMut<Stride, Data = T>,
    ExtentN<N>: Copy
[src]

type Data = T

impl<N, T> Get<Stride> for ArrayN<N, T> where
    T: Clone
[src]

type Data = T

impl<N, T> GetMut<Stride> for ArrayN<N, T>[src]

type Data = T

impl<N, T> GetUnchecked<Stride> for ArrayN<N, T> where
    T: Clone
[src]

type Data = T

impl<N, T> GetUncheckedMut<Stride> for ArrayN<N, T>[src]

type Data = T

impl Hash for Stride[src]

impl Mul<usize> for Stride[src]

type Output = Self

The resulting type after applying the * operator.

impl PartialEq<Stride> for Stride[src]

impl StructuralEq for Stride[src]

impl StructuralPartialEq for Stride[src]

impl Sub<Stride> for Stride[src]

type Output = Self

The resulting type after applying the - operator.

impl SubAssign<Stride> for Stride[src]

impl Zero for Stride[src]

Auto Trait Implementations

impl RefUnwindSafe for Stride

impl Send for Stride

impl Sync for Stride

impl Unpin for Stride

impl UnwindSafe for Stride

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.