pub struct SkillOverlay {
pub description: Option<String>,
pub model_invocable: Option<bool>,
pub user_invocable: Option<bool>,
pub tools: AgentOverlayTools,
}Expand description
Per-skill overlay policy in mars.toml [skills.<name>].
Fields§
§description: Option<String>§model_invocable: Option<bool>§user_invocable: Option<bool>§tools: AgentOverlayToolsImplementations§
Trait Implementations§
Source§impl Clone for SkillOverlay
impl Clone for SkillOverlay
Source§fn clone(&self) -> SkillOverlay
fn clone(&self) -> SkillOverlay
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 SkillOverlay
impl Debug for SkillOverlay
Source§impl Default for SkillOverlay
impl Default for SkillOverlay
Source§fn default() -> SkillOverlay
fn default() -> SkillOverlay
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SkillOverlay
impl<'de> Deserialize<'de> for SkillOverlay
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
Source§impl PartialEq for SkillOverlay
impl PartialEq for SkillOverlay
Source§impl Serialize for SkillOverlay
impl Serialize for SkillOverlay
impl StructuralPartialEq for SkillOverlay
Auto Trait Implementations§
impl Freeze for SkillOverlay
impl RefUnwindSafe for SkillOverlay
impl Send for SkillOverlay
impl Sync for SkillOverlay
impl Unpin for SkillOverlay
impl UnsafeUnpin for SkillOverlay
impl UnwindSafe for SkillOverlay
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more