pub struct Personality {
pub title: &'static str,
pub emoji: &'static str,
pub traits: Vec<&'static str>,
pub advice: Vec<&'static str>,
pub score: f64,
}Expand description
A developer personality profile.
Fields§
§title: &'static str§emoji: &'static str§traits: Vec<&'static str>§advice: Vec<&'static str>§score: f64Trait Implementations§
Source§impl Clone for Personality
impl Clone for Personality
Source§fn clone(&self) -> Personality
fn clone(&self) -> Personality
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for Personality
impl RefUnwindSafe for Personality
impl Send for Personality
impl Sync for Personality
impl Unpin for Personality
impl UnsafeUnpin for Personality
impl UnwindSafe for Personality
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