[][src]Struct luminance::pixel::R16UI

pub struct R16UI;

A red 16-bit unsigned integral pixel format.

Trait Implementations

impl Clone for R16UI[src]

impl ColorPixel for R16UI[src]

impl Copy for R16UI[src]

impl Debug for R16UI[src]

impl Pixel for R16UI[src]

type Encoding = u16

Encoding of a single pixel. It should match the PixelFormat mapping.

type RawEncoding = u16

Raw encoding of a single pixel; i.e. that is, encoding of underlying values in contiguous texture memory, without taking into account channels. It should match the PixelFormat mapping. Read more

type SamplerType = Unsigned

The type of sampler required to access this pixel format.

impl RenderablePixel for R16UI[src]

Auto Trait Implementations

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<B, D, P> ColorSlot<B, D> for P where
    B: Framebuffer<D> + Texture<D, P> + ?Sized,
    D: Dimensionable,
    P: ColorPixel + RenderablePixel,
    <D as Dimensionable>::Size: Copy
[src]

type ColorTextures = Texture<B, D, P>

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.