[][src]Struct vulkano::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: Clone, L: Clone> Clone for ComputeEntryPoint<'a, S, L>[src]

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

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

Auto Trait Implementations

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

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

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

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> Content for T[src]

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

impl<T> From<T> for 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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