pub struct SkillLoadEvent {
pub skill_name: String,
pub tool_names: Vec<String>,
pub version: Option<String>,
pub description: Option<String>,
pub loaded_at: i64,
}Expand description
Skill load event payload
Fields§
§skill_name: StringSkill name
tool_names: Vec<String>Tool names loaded from the skill
version: Option<String>Skill version (if available)
description: Option<String>Skill description (if available)
loaded_at: i64Timestamp when skill was loaded (Unix milliseconds)
Trait Implementations§
Source§impl Clone for SkillLoadEvent
impl Clone for SkillLoadEvent
Source§fn clone(&self) -> SkillLoadEvent
fn clone(&self) -> SkillLoadEvent
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 SkillLoadEvent
impl Debug for SkillLoadEvent
Source§impl<'de> Deserialize<'de> for SkillLoadEvent
impl<'de> Deserialize<'de> for SkillLoadEvent
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 SkillLoadEvent
impl RefUnwindSafe for SkillLoadEvent
impl Send for SkillLoadEvent
impl Sync for SkillLoadEvent
impl Unpin for SkillLoadEvent
impl UnsafeUnpin for SkillLoadEvent
impl UnwindSafe for SkillLoadEvent
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