pub struct InlineSkillSourceParam {
pub media_type: String,
pub data: String,
}Available on crate feature
response-types only.Expand description
An inline skill source (base64-encoded zip).
Fields§
§media_type: StringThe media type. Always "application/zip".
data: StringThe base64-encoded skill data.
Trait Implementations§
Source§impl Clone for InlineSkillSourceParam
impl Clone for InlineSkillSourceParam
Source§fn clone(&self) -> InlineSkillSourceParam
fn clone(&self) -> InlineSkillSourceParam
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 InlineSkillSourceParam
impl Debug for InlineSkillSourceParam
Source§impl<'de> Deserialize<'de> for InlineSkillSourceParam
impl<'de> Deserialize<'de> for InlineSkillSourceParam
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 InlineSkillSourceParam
impl PartialEq for InlineSkillSourceParam
Source§impl Serialize for InlineSkillSourceParam
impl Serialize for InlineSkillSourceParam
impl StructuralPartialEq for InlineSkillSourceParam
Auto Trait Implementations§
impl Freeze for InlineSkillSourceParam
impl RefUnwindSafe for InlineSkillSourceParam
impl Send for InlineSkillSourceParam
impl Sync for InlineSkillSourceParam
impl Unpin for InlineSkillSourceParam
impl UnsafeUnpin for InlineSkillSourceParam
impl UnwindSafe for InlineSkillSourceParam
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