pub trait VectorSld {
// Required methods
unsafe fn vec_sld<const UIMM4: i32>(self, b: Self) -> Self;
unsafe fn vec_sldw<const UIMM2: i32>(self, b: Self) -> Self;
}
🔬This is a nightly-only experimental API. (
stdarch_powerpc
#111145)Available on PowerPC or PowerPC-64 only.
Required Methods§
unsafe fn vec_sld<const UIMM4: i32>(self, b: Self) -> Self
🔬This is a nightly-only experimental API. (
stdarch_powerpc
#111145)unsafe fn vec_sldw<const UIMM2: i32>(self, b: Self) -> 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.