pub struct PlanarLabPalette {
pub l: Vec<f32>,
pub a: Vec<f32>,
pub b: Vec<f32>,
pub len: usize,
}Expand description
A palette stored in planar format for SIMD efficiency.
Fields§
§l: Vec<f32>§a: Vec<f32>§b: Vec<f32>§len: usizeImplementations§
Auto Trait Implementations§
impl Freeze for PlanarLabPalette
impl RefUnwindSafe for PlanarLabPalette
impl Send for PlanarLabPalette
impl Sync for PlanarLabPalette
impl Unpin for PlanarLabPalette
impl UnwindSafe for PlanarLabPalette
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