pub struct InlineSkill {
pub description: String,
pub name: String,
pub source: InlineSkillSource,
pub type_: String,
}Fields§
§description: StringThe description of the skill.
name: StringThe name of the skill.
source: InlineSkillSourceInline skill payload
type_: StringDefines an inline skill for this request.
Trait Implementations§
Source§impl Clone for InlineSkill
impl Clone for InlineSkill
Source§fn clone(&self) -> InlineSkill
fn clone(&self) -> InlineSkill
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 InlineSkill
impl Debug for InlineSkill
Source§impl<'de> Deserialize<'de> for InlineSkill
impl<'de> Deserialize<'de> for InlineSkill
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 InlineSkill
impl RefUnwindSafe for InlineSkill
impl Send for InlineSkill
impl Sync for InlineSkill
impl Unpin for InlineSkill
impl UnsafeUnpin for InlineSkill
impl UnwindSafe for InlineSkill
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