[][src]Struct filum::DispatchBuilder

pub struct DispatchBuilder<'a, WorkgroupCountType, PushConstantsType> { /* fields omitted */ }

Methods

impl<'a> DispatchBuilder<'a, (), ()>[src]

pub fn new(pipeline: &'a Arc<Pipeline>) -> Self[src]

impl<'a, PushConstantsType> DispatchBuilder<'a, (), PushConstantsType>[src]

pub fn workgroup_count(
    self,
    x: usize,
    y: usize,
    z: usize
) -> DispatchBuilder<'a, WorkgroupCount, PushConstantsType>
[src]

impl<'a, WorkgroupCountType> DispatchBuilder<'a, WorkgroupCountType, ()>[src]

pub fn push_constants(
    self,
    push_constants: Vec<ConstantEntry>
) -> DispatchBuilder<'a, WorkgroupCountType, Vec<ConstantEntry>>
[src]

impl<'a> DispatchBuilder<'a, WorkgroupCount, Vec<ConstantEntry>>[src]

impl<'a> DispatchBuilder<'a, WorkgroupCount, ()>[src]

Auto Trait Implementations

impl<'a, WorkgroupCountType, PushConstantsType> RefUnwindSafe for DispatchBuilder<'a, WorkgroupCountType, PushConstantsType> where
    PushConstantsType: RefUnwindSafe,
    WorkgroupCountType: RefUnwindSafe

impl<'a, WorkgroupCountType, PushConstantsType> !Send for DispatchBuilder<'a, WorkgroupCountType, PushConstantsType>

impl<'a, WorkgroupCountType, PushConstantsType> !Sync for DispatchBuilder<'a, WorkgroupCountType, PushConstantsType>

impl<'a, WorkgroupCountType, PushConstantsType> Unpin for DispatchBuilder<'a, WorkgroupCountType, PushConstantsType> where
    PushConstantsType: Unpin,
    WorkgroupCountType: Unpin

impl<'a, WorkgroupCountType, PushConstantsType> UnwindSafe for DispatchBuilder<'a, WorkgroupCountType, PushConstantsType> where
    PushConstantsType: UnwindSafe,
    WorkgroupCountType: UnwindSafe

Blanket Implementations

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> 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.