Struct simd::Tails [−] [src]

pub struct Tails<'a, T: 'a, U: 'a> {
    pub start: &'a [T],
    pub middle: &'a [U],
    pub end: &'a [T],
}

A type that repesents a &[U] converted from a &[T], where the conversion may be forced to leave leading/trailing elements (due to alignment/size mismatches).

Fields

start
middle
end

Trait Implementations

impl<'a, T, U> Copy for Tails<'a, T, U>

impl<'a, T, U> Clone for Tails<'a, T, U>

fn clone(&self) -> Tails<'a, T, U>

fn clone_from(&mut self, source: &Self)