pub struct SkillInjectorConfig {
pub policy: SelectionPolicy,
pub max_injected_chars: usize,
pub global_skills_dir: Option<PathBuf>,
pub extra_paths: Vec<PathBuf>,
}Fields§
§policy: SelectionPolicy§max_injected_chars: usize§global_skills_dir: Option<PathBuf>Optional global skills directory (e.g. ~/.config/adk/skills/).
Skills here are included in the index but project-local skills
take precedence when names collide.
extra_paths: Vec<PathBuf>Additional directories to scan for skills.
Trait Implementations§
Source§impl Clone for SkillInjectorConfig
impl Clone for SkillInjectorConfig
Source§fn clone(&self) -> SkillInjectorConfig
fn clone(&self) -> SkillInjectorConfig
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 SkillInjectorConfig
impl Debug for SkillInjectorConfig
Auto Trait Implementations§
impl Freeze for SkillInjectorConfig
impl RefUnwindSafe for SkillInjectorConfig
impl Send for SkillInjectorConfig
impl Sync for SkillInjectorConfig
impl Unpin for SkillInjectorConfig
impl UnsafeUnpin for SkillInjectorConfig
impl UnwindSafe for SkillInjectorConfig
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