pub enum TypingSpeed {
VerySlow,
Slow,
Normal,
Fast,
VeryFast,
}Expand description
Typing speed presets.
Variants§
VerySlow
Very slow typing (hunt and peck).
Slow
Slow typing (beginner).
Normal
Normal typing speed.
Fast
Fast typing speed.
VeryFast
Very fast typing (professional).
Implementations§
Source§impl TypingSpeed
impl TypingSpeed
Sourcepub fn config(self) -> HumanTypingConfig
pub fn config(self) -> HumanTypingConfig
Get the configuration for this typing speed.
Trait Implementations§
Source§impl Clone for TypingSpeed
impl Clone for TypingSpeed
Source§fn clone(&self) -> TypingSpeed
fn clone(&self) -> TypingSpeed
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 TypingSpeed
impl Debug for TypingSpeed
Source§impl PartialEq for TypingSpeed
impl PartialEq for TypingSpeed
impl Copy for TypingSpeed
impl Eq for TypingSpeed
impl StructuralPartialEq for TypingSpeed
Auto Trait Implementations§
impl Freeze for TypingSpeed
impl RefUnwindSafe for TypingSpeed
impl Send for TypingSpeed
impl Sync for TypingSpeed
impl Unpin for TypingSpeed
impl UnwindSafe for TypingSpeed
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