Struct core::arch::wasm32::v128

1.54.0 · source ·
#[repr(simd)]
pub struct v128(_, _, _, _);
Available on WebAssembly and target_family="wasm" only.
Expand description

特定于 WASM 的 128 位宽 SIMD vector 类型。

此类型对应于 WebAssembly SIMD 提议 中的 v128 类型。 此类型为 128 位大,所有位的含义在如何使用此值的上下文中定义。

该相同类型同时用于所有 128 位宽的 SIMD 类型,例如:

  • 十六个 8 位整数 (i8u8)
  • 八个 16 位整数 (i16u16)
  • 四个 32 位整数 (i32u32)
  • 两个 64 位整数 (i64u64)
  • 四个 32 位浮点数 (f32)
  • 两个 64 位浮点数 (f64)

Rust 中的 v128 类型旨在与 WebAssembly 中的 v128 类型非常相似。 v128 的操作只能通过本模块的函数进行。

Trait Implementations§

source§

impl Clone for v128

source§

fn clone(&self) -> v128

返回值的副本。 Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

source 执行复制分配。 Read more
source§

impl Debug for v128

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

使用给定的格式化程序格式化该值。 Read more
source§

impl Copy for v128

Auto Trait Implementations§

§

impl RefUnwindSafe for v128

§

impl Send for v128

§

impl Sync for v128

§

impl Unpin for v128

§

impl UnwindSafe for v128

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

获取 selfTypeIdRead more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

从拥有的值中一成不变地借用。 Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

从拥有的值中借用。 Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

返回未更改的参数。

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

调用 U::from(self)

也就是说,这种转换是 From<T> for U 实现选择执行的任何操作。

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

发生转换错误时返回的类型。
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

执行转换。
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

发生转换错误时返回的类型。
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

执行转换。