pub enum DrawingSpeed {
UniverseAnnihilating,
UltraFast,
Fast,
Medium,
Slow,
}Variants§
UniverseAnnihilating
Universe Annihilating (1ps/line) (BREAKS SOME APPS)
UltraFast
Ultra-Fast (1ms/line)
Fast
Fast (10ms/line)
Medium
Medium (50ms/line)
Slow
Slow (200ms/line)
Implementations§
Trait Implementations§
Source§impl Clone for DrawingSpeed
impl Clone for DrawingSpeed
Source§fn clone(&self) -> DrawingSpeed
fn clone(&self) -> DrawingSpeed
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DrawingSpeed
impl Debug for DrawingSpeed
Source§impl Display for DrawingSpeed
impl Display for DrawingSpeed
Source§impl PartialEq for DrawingSpeed
impl PartialEq for DrawingSpeed
Source§fn eq(&self, other: &DrawingSpeed) -> bool
fn eq(&self, other: &DrawingSpeed) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DrawingSpeed
impl StructuralPartialEq for DrawingSpeed
Auto Trait Implementations§
impl Freeze for DrawingSpeed
impl RefUnwindSafe for DrawingSpeed
impl Send for DrawingSpeed
impl Sync for DrawingSpeed
impl Unpin for DrawingSpeed
impl UnsafeUnpin for DrawingSpeed
impl UnwindSafe for DrawingSpeed
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more