pub enum Aesthetic {
JustChopItOff,
TooBigToBeFunctional,
Gross,
UglyButUsable,
KindaMediocre,
Normal,
ABitBetterThanNormal,
NiceOne,
Cockalicious,
Perfect,
}Expand description
/// The Aesthetic enum represents different aesthetic values of a cock.
Variants§
JustChopItOff
TooBigToBeFunctional
Gross
UglyButUsable
KindaMediocre
Normal
ABitBetterThanNormal
NiceOne
Cockalicious
Perfect
Trait Implementations§
source§impl FromString for Aesthetic
impl FromString for Aesthetic
The FromString trait implementation for Aesthetic returns an Aesthetic variant based on the string provided.
source§fn from_string(aesthetic: &str) -> Aesthetic
fn from_string(aesthetic: &str) -> Aesthetic
Function to create an instance of the type implementing this trait from a string.
source§impl GetVariants for Aesthetic
impl GetVariants for Aesthetic
The GetVariants trait implementation for Aesthetic returns a vector of the possible variants of Aesthetic.
source§fn get_variants() -> Vec<String>
fn get_variants() -> Vec<String>
Function to get the variants of the object.
source§impl PartialEq<Aesthetic> for Aesthetic
impl PartialEq<Aesthetic> for Aesthetic
impl StructuralPartialEq for Aesthetic
Auto Trait Implementations§
impl RefUnwindSafe for Aesthetic
impl Send for Aesthetic
impl Sync for Aesthetic
impl Unpin for Aesthetic
impl UnwindSafe for Aesthetic
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