[][src]Struct nannou::vk::pipeline::shader::ComputeEntryPoint

pub struct ComputeEntryPoint<'a, S, L> { /* fields omitted */ }

Represents the entry point of a compute shader in a shader module.

Can be obtained by calling compute_shader_entry_point() on the shader module.

Trait Implementations

impl<'a, S, L> EntryPointAbstract for ComputeEntryPoint<'a, S, L> where
    L: PipelineLayoutDesc,
    S: SpecializationConstants
[src]

type PipelineLayout = L

type SpecializationConstants = S

impl<'a, S, L> Clone for ComputeEntryPoint<'a, S, L> where
    L: Clone,
    S: Clone
[src]

impl<'a, S, L> Copy for ComputeEntryPoint<'a, S, L> where
    L: Copy,
    S: Copy
[src]

impl<'a, S, L> Debug for ComputeEntryPoint<'a, S, L> where
    L: Debug,
    S: Debug
[src]

Auto Trait Implementations

impl<'a, S, L> Send for ComputeEntryPoint<'a, S, L> where
    L: Send,
    S: Send

impl<'a, S, L> Unpin for ComputeEntryPoint<'a, S, L> where
    L: Unpin,
    S: Unpin

impl<'a, S, L> Sync for ComputeEntryPoint<'a, S, L> where
    L: Sync,
    S: Sync

impl<'a, S, L> UnwindSafe for ComputeEntryPoint<'a, S, L> where
    L: UnwindSafe,
    S: UnwindSafe

impl<'a, S, L> RefUnwindSafe for ComputeEntryPoint<'a, S, L> where
    L: RefUnwindSafe,
    S: RefUnwindSafe

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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]

impl<T> Content for T[src]

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

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

impl<T> SetParameter for T

impl<T> SetParameter for T

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