#[repr(C)]pub struct f16(pub u16);
Expand description
Type representation of the Float16 physical type
Tuple Fields§
§0: u16
Implementations§
Trait Implementations§
source§impl NativeType for f16
impl NativeType for f16
source§const PRIMITIVE: PrimitiveType = PrimitiveType::Float16
const PRIMITIVE: PrimitiveType = PrimitiveType::Float16
The corresponding variant of
PrimitiveType
.§type Bytes = [u8; 2]
type Bytes = [u8; 2]
Type denoting its representation as bytes.
This is
[u8; N]
where N = size_of::<T>
.source§fn to_le_bytes(&self) -> Self::Bytes
fn to_le_bytes(&self) -> Self::Bytes
To bytes in little endian
source§fn to_be_bytes(&self) -> Self::Bytes
fn to_be_bytes(&self) -> Self::Bytes
To bytes in big endian
source§fn from_be_bytes(bytes: Self::Bytes) -> Self
fn from_be_bytes(bytes: Self::Bytes) -> Self
From bytes in big endian
source§fn from_le_bytes(bytes: Self::Bytes) -> Self
fn from_le_bytes(bytes: Self::Bytes) -> Self
From bytes in little endian
source§impl Simd8Lanes<f16> for [f16; 8]
Available on crate feature compute_comparison
only.
impl Simd8Lanes<f16> for [f16; 8]
Available on crate feature
compute_comparison
only.source§fn from_chunk(v: &[f16]) -> Self
fn from_chunk(v: &[f16]) -> Self
loads a complete chunk
source§fn from_incomplete_chunk(v: &[f16], remaining: f16) -> Self
fn from_incomplete_chunk(v: &[f16], remaining: f16) -> Self
loads an incomplete chunk, filling the remaining items with
remaining
.impl Copy for f16
impl Pod for f16
Auto Trait Implementations§
impl RefUnwindSafe for f16
impl Send for f16
impl Sync for f16
impl Unpin for f16
impl UnwindSafe for f16
Blanket Implementations§
source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
§type Bits = T
type Bits = T
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
.source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self
.