pub enum Beak {
None,
Beak,
Happy,
Sad,
Confused,
Surprised,
Muted,
Dot,
Dash,
Underscore,
Plus,
Minus,
}Variants§
Implementations§
Source§impl Beak
impl Beak
Sourcepub fn generate_random() -> Self
pub fn generate_random() -> Self
Generates a random instance of this type
Sourcepub fn generate_random_customize<T: FnOnce(&mut Self)>(customize: T) -> Self
pub fn generate_random_customize<T: FnOnce(&mut Self)>(customize: T) -> Self
Generates a random instance of this type with the possibility to customize it
Trait Implementations§
Source§impl Distribution<Beak> for Standard
impl Distribution<Beak> for Standard
Auto Trait Implementations§
impl Freeze for Beak
impl RefUnwindSafe for Beak
impl Send for Beak
impl Sync for Beak
impl Unpin for Beak
impl UnwindSafe for Beak
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