pub enum RasterPipelineKind {
    High {
        functions: ArrayVec<fn(p: &mut Pipeline<'_, '_>), MAX_STAGES>,
        tail_functions: ArrayVec<fn(p: &mut Pipeline<'_, '_>), MAX_STAGES>,
    },
    Low {
        functions: ArrayVec<fn(p: &mut Pipeline<'_, '_>), MAX_STAGES>,
        tail_functions: ArrayVec<fn(p: &mut Pipeline<'_, '_>), MAX_STAGES>,
    },
}Variants§
Auto Trait Implementations§
impl Freeze for RasterPipelineKind
impl RefUnwindSafe for RasterPipelineKind
impl Send for RasterPipelineKind
impl Sync for RasterPipelineKind
impl Unpin for RasterPipelineKind
impl UnwindSafe for RasterPipelineKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more