pub struct InlineSkillSource {
pub data: String,
pub media_type: String,
pub type_: String,
}Expand description
Inline skill payload
Fields§
§data: StringBase64-encoded skill zip bundle.
media_type: StringThe media type of the inline skill payload. Must be application/zip.
type_: StringThe type of the inline skill source. Must be base64.
Trait Implementations§
Source§impl Clone for InlineSkillSource
impl Clone for InlineSkillSource
Source§fn clone(&self) -> InlineSkillSource
fn clone(&self) -> InlineSkillSource
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 InlineSkillSource
impl Debug for InlineSkillSource
Source§impl<'de> Deserialize<'de> for InlineSkillSource
impl<'de> Deserialize<'de> for InlineSkillSource
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 InlineSkillSource
impl RefUnwindSafe for InlineSkillSource
impl Send for InlineSkillSource
impl Sync for InlineSkillSource
impl Unpin for InlineSkillSource
impl UnsafeUnpin for InlineSkillSource
impl UnwindSafe for InlineSkillSource
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