#[repr(u32)]pub enum PaintMethod {
Undefined = 0,
Point = 1,
Replace = 2,
Floodfill = 3,
FillToBorder = 4,
Reset = 5,
}
Variants§
Trait Implementations§
Source§impl Clone for PaintMethod
impl Clone for PaintMethod
Source§fn clone(&self) -> PaintMethod
fn clone(&self) -> PaintMethod
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 PaintMethod
impl Debug for PaintMethod
Source§impl Hash for PaintMethod
impl Hash for PaintMethod
Source§impl PartialEq for PaintMethod
impl PartialEq for PaintMethod
impl Copy for PaintMethod
impl Eq for PaintMethod
impl StructuralPartialEq for PaintMethod
Auto Trait Implementations§
impl Freeze for PaintMethod
impl RefUnwindSafe for PaintMethod
impl Send for PaintMethod
impl Sync for PaintMethod
impl Unpin for PaintMethod
impl UnwindSafe for PaintMethod
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