Trait VectorInsert

Source
pub trait VectorInsert {
    type Scalar;

    // Required method
    unsafe fn vec_insert<const IDX: u32>(self, s: Self::Scalar) -> Self;
}
🔬This is a nightly-only experimental API. (stdarch_powerpc #111145)
Available on PowerPC or PowerPC-64 only.

Required Associated Types§

Source

type Scalar

🔬This is a nightly-only experimental API. (stdarch_powerpc #111145)

Required Methods§

Source

unsafe fn vec_insert<const IDX: u32>(self, s: Self::Scalar) -> Self

🔬This is a nightly-only experimental API. (stdarch_powerpc #111145)

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§