pub enum Animation {
CharacterCycling,
Typing,
}
Expand description
The types of animations that text can be printed with
Variants§
CharacterCycling
The text is cycled one character at a time, staring from the space char in ASCII
Typing
The text is printed one character at a time
Trait Implementations§
impl Eq for Animation
impl StructuralPartialEq for Animation
Auto Trait Implementations§
impl Freeze for Animation
impl RefUnwindSafe for Animation
impl Send for Animation
impl Sync for Animation
impl Unpin for Animation
impl UnwindSafe for Animation
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