[][src]Struct goggles::fetch_resources::FetchNone

pub struct FetchNone<S, R>(_);

An empty type useful in generic contexts that implements FetchResources but does not actually fetch any resources.

Trait Implementations

impl<S, R> Default for FetchNone<S, R>[src]

impl<'a, S, R: Resources> FetchResources<'a> for FetchNone<S, R>[src]

type Source = S

type Resources = R

Auto Trait Implementations

impl<S, R> RefUnwindSafe for FetchNone<S, R> where
    R: RefUnwindSafe,
    S: RefUnwindSafe

impl<S, R> Send for FetchNone<S, R> where
    R: Send,
    S: Send

impl<S, R> Sync for FetchNone<S, R> where
    R: Sync,
    S: Sync

impl<S, R> Unpin for FetchNone<S, R> where
    R: Unpin,
    S: Unpin

impl<S, R> UnwindSafe for FetchNone<S, R> where
    R: UnwindSafe,
    S: UnwindSafe

Blanket Implementations

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

impl<T> Any for T where
    T: Any
[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> Pointable for T

type Init = T

The type for initializers.

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.