pub struct QuantizerResult {
pub color_to_count: IndexMap<Argb, u32, BuildHasherDefault<AHasher>>,
pub input_pixel_to_cluster_pixel: IndexMap<Argb, Argb, BuildHasherDefault<AHasher>>,
}Fields§
§color_to_count: IndexMap<Argb, u32, BuildHasherDefault<AHasher>>§input_pixel_to_cluster_pixel: IndexMap<Argb, Argb, BuildHasherDefault<AHasher>>Auto Trait Implementations§
impl Freeze for QuantizerResult
impl RefUnwindSafe for QuantizerResult
impl Send for QuantizerResult
impl Sync for QuantizerResult
impl Unpin for QuantizerResult
impl UnsafeUnpin for QuantizerResult
impl UnwindSafe for QuantizerResult
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