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