Struct simd::TailsMut [−] [src]

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

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

Fields

start
middle
end