[][src]Trait packed_simd::Cast

pub trait Cast<T>: Sized {
    fn cast(self) -> T;
}
[]

Numeric cast from Self to T.

Note: This is a temporary workaround until the conversion traits specified > in RFC2484 are implemented.

Numeric cast between vectors with the same number of lanes, such that:

Required methods

fn cast(self) -> T[]

Numeric cast from self to T.

Implementors

impl<T, U> Cast<U> for T where
    U: FromCast<T>, 
[src][]

FromCast implies Cast.