Enum nannou::wgpu::LoadOp[][src]

pub enum LoadOp<V> {
    Clear(V),
    Load,
}

Operation to perform to the output attachment at the start of a renderpass.

The render target must be cleared at least once before it’s content be loaded.

Variants

Clear(V)

Clear with a specified value.

Load

Load from memory.

Trait Implementations

impl<V> Clone for LoadOp<V> where
    V: Clone
[src]

impl<V> Copy for LoadOp<V> where
    V: Copy
[src]

impl<V> Debug for LoadOp<V> where
    V: Debug
[src]

impl<V> Default for LoadOp<V> where
    V: Default
[src]

impl<V> Eq for LoadOp<V> where
    V: Eq
[src]

impl<V> Hash for LoadOp<V> where
    V: Hash
[src]

impl<V> PartialEq<LoadOp<V>> for LoadOp<V> where
    V: PartialEq<V>, 
[src]

impl<V> StructuralEq for LoadOp<V>[src]

impl<V> StructuralPartialEq for LoadOp<V>[src]

Auto Trait Implementations

impl<V> RefUnwindSafe for LoadOp<V> where
    V: RefUnwindSafe

impl<V> Send for LoadOp<V> where
    V: Send

impl<V> Sync for LoadOp<V> where
    V: Sync

impl<V> Unpin for LoadOp<V> where
    V: Unpin

impl<V> UnwindSafe for LoadOp<V> where
    V: UnwindSafe

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    T: Component + Float,
    D: AdaptFrom<S, Swp, Dwp, T>,
    Swp: WhitePoint,
    Dwp: WhitePoint
[src]

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> CallHasher for T where
    T: Hash

impl<T, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

impl<T> Downcast<T> for T

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

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

impl<T> NodeId for T where
    T: 'static + Copy + Clone + PartialEq<T> + Eq + Hash + Send
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> SetParameter for T

impl<T> Style for T where
    T: Any + Debug + PartialEq<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.

impl<T> Upcast<T> for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,