pub struct SkillsListParams {
pub cwds: Vec<String>,
pub force_reload: Option<bool>,
}Expand description
SkillsListParams
JSON schema
{
"title": "SkillsListParams",
"type": "object",
"properties": {
"cwds": {
"description": "When empty, defaults to the current session working directory.",
"type": "array",
"items": {
"type": "string"
}
},
"forceReload": {
"description": "When true, bypass the skills cache and re-scan skills from disk.",
"type": "boolean"
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}Fields§
§cwds: Vec<String>When empty, defaults to the current session working directory.
force_reload: Option<bool>When true, bypass the skills cache and re-scan skills from disk.
Trait Implementations§
Source§impl Clone for SkillsListParams
impl Clone for SkillsListParams
Source§fn clone(&self) -> SkillsListParams
fn clone(&self) -> SkillsListParams
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 SkillsListParams
impl Debug for SkillsListParams
Source§impl Default for SkillsListParams
impl Default for SkillsListParams
Source§impl<'de> Deserialize<'de> for SkillsListParams
impl<'de> Deserialize<'de> for SkillsListParams
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 SkillsListParams
impl RefUnwindSafe for SkillsListParams
impl Send for SkillsListParams
impl Sync for SkillsListParams
impl Unpin for SkillsListParams
impl UnsafeUnpin for SkillsListParams
impl UnwindSafe for SkillsListParams
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