pub struct SkillScore {
pub skill_name: String,
pub score: f32,
pub feedback_count: usize,
pub disabled: bool,
}Expand description
Skill score summary
Fields§
§skill_name: StringSkill name
score: f32Current weighted score (0.0 to 1.0)
feedback_count: usizeTotal feedback count
disabled: boolWhether the skill is currently disabled
Trait Implementations§
Source§impl Clone for SkillScore
impl Clone for SkillScore
Source§fn clone(&self) -> SkillScore
fn clone(&self) -> SkillScore
Returns a duplicate of the value. Read more
1.0.0 · 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 SkillScore
impl Debug for SkillScore
Source§impl<'de> Deserialize<'de> for SkillScore
impl<'de> Deserialize<'de> for SkillScore
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SkillScore
impl RefUnwindSafe for SkillScore
impl Send for SkillScore
impl Sync for SkillScore
impl Unpin for SkillScore
impl UnsafeUnpin for SkillScore
impl UnwindSafe for SkillScore
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