pub struct SkillMetadata {
pub always: bool,
pub emoji: Option<String>,
pub homepage: Option<String>,
pub os: Vec<String>,
pub requires: SkillRequirements,
pub primary_env: Option<String>,
}Expand description
OpenClaw-compatible skill metadata
Fields§
§always: boolAlways include this skill (skip gating)
emoji: Option<String>Optional emoji for UI
homepage: Option<String>Homepage URL
os: Vec<String>Required OS platforms (darwin, linux, win32)
requires: SkillRequirementsGating requirements
primary_env: Option<String>Primary env var for API key
Trait Implementations§
Source§impl Clone for SkillMetadata
impl Clone for SkillMetadata
Source§fn clone(&self) -> SkillMetadata
fn clone(&self) -> SkillMetadata
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 SkillMetadata
impl Debug for SkillMetadata
Source§impl Default for SkillMetadata
impl Default for SkillMetadata
Source§fn default() -> SkillMetadata
fn default() -> SkillMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SkillMetadata
impl<'de> Deserialize<'de> for SkillMetadata
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 SkillMetadata
impl RefUnwindSafe for SkillMetadata
impl Send for SkillMetadata
impl Sync for SkillMetadata
impl Unpin for SkillMetadata
impl UnsafeUnpin for SkillMetadata
impl UnwindSafe for SkillMetadata
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