pub struct DiscoveredSkill {
pub skill: Skill,
pub score: f64,
pub match_type: MatchType,
}Fields§
§skill: Skill§score: f64§match_type: MatchTypeTrait Implementations§
Source§impl Clone for DiscoveredSkill
impl Clone for DiscoveredSkill
Source§fn clone(&self) -> DiscoveredSkill
fn clone(&self) -> DiscoveredSkill
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 DiscoveredSkill
impl Debug for DiscoveredSkill
Source§impl<'de> Deserialize<'de> for DiscoveredSkill
impl<'de> Deserialize<'de> for DiscoveredSkill
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 DiscoveredSkill
impl RefUnwindSafe for DiscoveredSkill
impl Send for DiscoveredSkill
impl Sync for DiscoveredSkill
impl Unpin for DiscoveredSkill
impl UnsafeUnpin for DiscoveredSkill
impl UnwindSafe for DiscoveredSkill
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