Enum tiny_skia::pipeline::RasterPipelineKind
source · 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