pub struct FriendFeedback {
pub mood: FriendMood,
pub patterns: Vec<BehaviorPattern>,
pub next_actions: Vec<NextAction>,
pub total_issues: usize,
pub total_score: f64,
}Fields§
§mood: FriendMood§patterns: Vec<BehaviorPattern>§next_actions: Vec<NextAction>§total_issues: usize§total_score: f64Implementations§
Trait Implementations§
Source§impl Clone for FriendFeedback
impl Clone for FriendFeedback
Source§fn clone(&self) -> FriendFeedback
fn clone(&self) -> FriendFeedback
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 FriendFeedback
impl RefUnwindSafe for FriendFeedback
impl Send for FriendFeedback
impl Sync for FriendFeedback
impl Unpin for FriendFeedback
impl UnsafeUnpin for FriendFeedback
impl UnwindSafe for FriendFeedback
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