pub struct Lanes<'a, T, D: Dim, L: Layout> { /* private fields */ }Expand description
Array lanes expression.
Trait Implementations§
source§impl<'a, T, D: Dim, L: Layout> Producer for Lanes<'a, T, D, L>
 
impl<'a, T, D: Dim, L: Layout> Producer for Lanes<'a, T, D, L>
§type Item = Array<ViewBuffer<'a, T, Const<1>, L>>
 
type Item = Array<ViewBuffer<'a, T, Const<1>, L>>
Element type from the expression.
source§const IS_REPEATABLE: bool = true
 
const IS_REPEATABLE: bool = true
True if the expression can be restarted from the beginning after the last index.
source§const SPLIT_MASK: usize = _
 
const SPLIT_MASK: usize = _
Bitmask per dimension indicating if indexing can be combined with the outer dimension.
impl<'a, T: Sync, D: Dim, L: Layout> Send for Lanes<'a, T, D, L>
impl<'a, T: Sync, D: Dim, L: Layout> Sync for Lanes<'a, T, D, L>
Auto Trait Implementations§
impl<'a, T, D, L> RefUnwindSafe for Lanes<'a, T, D, L>where
    T: RefUnwindSafe,
    <L as Layout>::Mapping<Const<1>>: RefUnwindSafe,
    <<D as Dim>::Lower as Dim>::Shape: RefUnwindSafe,
    <<D as Dim>::Lower as Dim>::Strides: RefUnwindSafe,
impl<'a, T, D, L> Unpin for Lanes<'a, T, D, L>
impl<'a, T, D, L> UnwindSafe for Lanes<'a, T, D, L>where
    T: RefUnwindSafe,
    <L as Layout>::Mapping<Const<1>>: UnwindSafe,
    <<D as Dim>::Lower as Dim>::Shape: UnwindSafe,
    <<D as Dim>::Lower as Dim>::Strides: UnwindSafe,
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