pub enum FriendMood {
Proud,
Concerned,
Sarcastic,
Alarmed,
Exhausted,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for FriendMood
impl Clone for FriendMood
Source§fn clone(&self) -> FriendMood
fn clone(&self) -> FriendMood
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 moreSource§impl Debug for FriendMood
impl Debug for FriendMood
Source§impl PartialEq for FriendMood
impl PartialEq for FriendMood
Source§fn eq(&self, other: &FriendMood) -> bool
fn eq(&self, other: &FriendMood) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for FriendMood
impl StructuralPartialEq for FriendMood
Auto Trait Implementations§
impl Freeze for FriendMood
impl RefUnwindSafe for FriendMood
impl Send for FriendMood
impl Sync for FriendMood
impl Unpin for FriendMood
impl UnsafeUnpin for FriendMood
impl UnwindSafe for FriendMood
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