ppv_lite86

Trait MultiLane

Source
pub trait MultiLane<Lanes> {
    // Required methods
    fn to_lanes(self) -> Lanes;
    fn from_lanes(lanes: Lanes) -> Self;
}
Expand description

A vector composed of multiple 128-bit lanes.

Required Methods§

Source

fn to_lanes(self) -> Lanes

Split a multi-lane vector into single-lane vectors.

Source

fn from_lanes(lanes: Lanes) -> Self

Build a multi-lane vector from individual lanes.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§