[][src]Struct luminance::shader::program::AdaptationFailure

pub struct AdaptationFailure<S, Out, Uni> {
    pub program: Program<S, Out, Uni>,
    pub error: ProgramError,
}

A Program uniform adaptation that has failed.

Fields

program: Program<S, Out, Uni>

Program used before trying to adapt.

error: ProgramError

Program error that prevented to adapt.

Methods

impl<S, Out, Uni> AdaptationFailure<S, Out, Uni>[src]

pub fn ignore_error(self) -> Program<S, Out, Uni>[src]

Get the program and ignore the error.

Auto Trait Implementations

impl<S, Out, Uni> !Send for AdaptationFailure<S, Out, Uni>

impl<S, Out, Uni> !Sync for AdaptationFailure<S, Out, Uni>

impl<S, Out, Uni> Unpin for AdaptationFailure<S, Out, Uni> where
    Uni: Unpin

impl<S, Out, Uni> RefUnwindSafe for AdaptationFailure<S, Out, Uni> where
    Out: RefUnwindSafe,
    S: RefUnwindSafe,
    Uni: RefUnwindSafe

impl<S, Out, Uni> UnwindSafe for AdaptationFailure<S, Out, Uni> where
    Out: RefUnwindSafe,
    S: RefUnwindSafe,
    Uni: UnwindSafe

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.

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

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

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