Struct gfx_core::format::F16[][src]

pub struct F16(pub u16);

Implementations

impl F16[src]

pub fn cast2(v: [u16; 2]) -> [F16; 2][src]

Convert a 2-element slice.

pub fn cast3(v: [u16; 3]) -> [F16; 3][src]

Convert a 3-element slice.

pub fn cast4(v: [u16; 4]) -> [F16; 4][src]

Convert a 4-element slice.

pub fn cast_slice(slice: &[u16]) -> &[F16]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

Convert a generic slice by transmutation.

Trait Implementations

impl Clone for F16[src]

impl Copy for F16[src]

impl Debug for F16[src]

impl Eq for F16[src]

impl From<u16> for F16[src]

impl Hash for F16[src]

impl Ord for F16[src]

impl PartialEq<F16> for F16[src]

impl PartialOrd<F16> for F16[src]

impl Pod for F16[src]

impl StructuralEq for F16[src]

impl StructuralPartialEq for F16[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.