pub enum Wings {
None,
Outward,
Inward,
}Variants§
Implementations§
Source§impl Wings
impl Wings
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<Wings> for Standard
impl Distribution<Wings> for Standard
Auto Trait Implementations§
impl Freeze for Wings
impl RefUnwindSafe for Wings
impl Send for Wings
impl Sync for Wings
impl Unpin for Wings
impl UnwindSafe for Wings
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