#[repr(u32)]pub enum SparseColorMethod {
Undefined = 0,
Barycentric = 1,
Bilinear = 7,
Polynomial = 8,
Shepards = 16,
Voronoi = 18,
Inverse = 19,
Manhattan = 20,
}
Variants§
Undefined = 0
Barycentric = 1
Bilinear = 7
Polynomial = 8
Shepards = 16
Voronoi = 18
Inverse = 19
Manhattan = 20
Trait Implementations§
Source§impl Clone for SparseColorMethod
impl Clone for SparseColorMethod
Source§fn clone(&self) -> SparseColorMethod
fn clone(&self) -> SparseColorMethod
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SparseColorMethod
impl Debug for SparseColorMethod
Source§impl Hash for SparseColorMethod
impl Hash for SparseColorMethod
Source§impl PartialEq for SparseColorMethod
impl PartialEq for SparseColorMethod
impl Copy for SparseColorMethod
impl Eq for SparseColorMethod
impl StructuralPartialEq for SparseColorMethod
Auto Trait Implementations§
impl Freeze for SparseColorMethod
impl RefUnwindSafe for SparseColorMethod
impl Send for SparseColorMethod
impl Sync for SparseColorMethod
impl Unpin for SparseColorMethod
impl UnwindSafe for SparseColorMethod
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