pub struct InlineSkillParam {
pub name: String,
pub description: String,
pub source: InlineSkillSourceParam,
}Available on crate feature
response-types only.Expand description
An inline skill definition.
Fields§
§name: StringThe name of the skill.
description: StringThe description of the skill.
source: InlineSkillSourceParamThe inline source for the skill.
Trait Implementations§
Source§impl Clone for InlineSkillParam
impl Clone for InlineSkillParam
Source§fn clone(&self) -> InlineSkillParam
fn clone(&self) -> InlineSkillParam
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 InlineSkillParam
impl Debug for InlineSkillParam
Source§impl<'de> Deserialize<'de> for InlineSkillParam
impl<'de> Deserialize<'de> for InlineSkillParam
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 InlineSkillParam
impl PartialEq for InlineSkillParam
Source§impl Serialize for InlineSkillParam
impl Serialize for InlineSkillParam
impl StructuralPartialEq for InlineSkillParam
Auto Trait Implementations§
impl Freeze for InlineSkillParam
impl RefUnwindSafe for InlineSkillParam
impl Send for InlineSkillParam
impl Sync for InlineSkillParam
impl Unpin for InlineSkillParam
impl UnsafeUnpin for InlineSkillParam
impl UnwindSafe for InlineSkillParam
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