[][src]Struct web_glitz::extensions::color_buffer_float::Extended

pub struct Extended<I> { /* fields omitted */ }

Wrapper type for attachable images that acts as a type proof for the availability of this extension, allowing the attachment of images that use a floating point internal format.

Trait Implementations

impl<I> AsAttachment for Extended<I> where
    I: AsAttachment
[src]

type Format = I::Format

The type of image storage format the image is stored in.

impl<I> AsMultisampleAttachment for Extended<I> where
    I: AsMultisampleAttachment
[src]

type SampleFormat = I::SampleFormat

The type of image storage format the image is stored in.

impl<I> AttachColorFloat for Extended<I> where
    I: AsAttachment,
    I::Format: FloatRenderable
[src]

impl<I> AttachMultisampleColorFloat for Extended<I> where
    I: AsMultisampleAttachment,
    I::SampleFormat: FloatRenderable
[src]

impl<I> Deref for Extended<I>[src]

type Target = I

The resulting type after dereferencing.

impl<I> DerefMut for Extended<I>[src]

Auto Trait Implementations

impl<I> RefUnwindSafe for Extended<I> where
    I: RefUnwindSafe

impl<I> Send for Extended<I> where
    I: Send

impl<I> Sync for Extended<I> where
    I: Sync

impl<I> Unpin for Extended<I> where
    I: Unpin

impl<I> UnwindSafe for Extended<I> where
    I: UnwindSafe

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<D, T> IntoBuffer<T> for D where
    D: Borrow<T> + 'static,
    T: Copy + 'static, 
[src]

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.