pub struct SkillSourceEntry {
pub path: String,
pub recursive: bool,
}Expand description
A skill source directory entry.
Fields§
§path: StringPath to the skill directory.
recursive: boolWhether to search subdirectories recursively.
Trait Implementations§
Source§impl Clone for SkillSourceEntry
impl Clone for SkillSourceEntry
Source§fn clone(&self) -> SkillSourceEntry
fn clone(&self) -> SkillSourceEntry
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 SkillSourceEntry
impl Debug for SkillSourceEntry
Source§impl<'de> Deserialize<'de> for SkillSourceEntry
impl<'de> Deserialize<'de> for SkillSourceEntry
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 SkillSourceEntry
impl RefUnwindSafe for SkillSourceEntry
impl Send for SkillSourceEntry
impl Sync for SkillSourceEntry
impl Unpin for SkillSourceEntry
impl UnsafeUnpin for SkillSourceEntry
impl UnwindSafe for SkillSourceEntry
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