pub struct LocalSkillParam {
pub name: String,
pub description: String,
pub path: String,
}Available on crate feature
response-types only.Expand description
A local skill available in a local environment.
Fields§
§name: StringThe name of the skill.
description: StringThe description of the skill.
path: StringThe path to the directory containing the skill.
Trait Implementations§
Source§impl Clone for LocalSkillParam
impl Clone for LocalSkillParam
Source§fn clone(&self) -> LocalSkillParam
fn clone(&self) -> LocalSkillParam
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 LocalSkillParam
impl Debug for LocalSkillParam
Source§impl<'de> Deserialize<'de> for LocalSkillParam
impl<'de> Deserialize<'de> for LocalSkillParam
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 LocalSkillParam
impl PartialEq for LocalSkillParam
Source§impl Serialize for LocalSkillParam
impl Serialize for LocalSkillParam
impl StructuralPartialEq for LocalSkillParam
Auto Trait Implementations§
impl Freeze for LocalSkillParam
impl RefUnwindSafe for LocalSkillParam
impl Send for LocalSkillParam
impl Sync for LocalSkillParam
impl Unpin for LocalSkillParam
impl UnsafeUnpin for LocalSkillParam
impl UnwindSafe for LocalSkillParam
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