pub struct DiscoveredSkills {
pub skills: Vec<Skill>,
pub warnings: Vec<String>,
}Expand description
What discovery produced.
Fields§
§skills: Vec<Skill>Listable skills, highest precedence first, ambiguity already resolved.
warnings: Vec<String>Skipped files and unusable names — for stderr, never for the model.
Trait Implementations§
Source§impl Clone for DiscoveredSkills
impl Clone for DiscoveredSkills
Source§fn clone(&self) -> DiscoveredSkills
fn clone(&self) -> DiscoveredSkills
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 DiscoveredSkills
impl Debug for DiscoveredSkills
Source§impl Default for DiscoveredSkills
impl Default for DiscoveredSkills
Source§fn default() -> DiscoveredSkills
fn default() -> DiscoveredSkills
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DiscoveredSkills
impl RefUnwindSafe for DiscoveredSkills
impl Send for DiscoveredSkills
impl Sync for DiscoveredSkills
impl Unpin for DiscoveredSkills
impl UnsafeUnpin for DiscoveredSkills
impl UnwindSafe for DiscoveredSkills
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