pub struct SkillVersionCreateParams {
pub description: Option<String>,
pub content: Option<SkillVersionContent>,
pub metadata: BTreeMap<String, String>,
pub extra: BTreeMap<String, Value>,
}Expand description
表示 skill version 创建参数。
Fields§
§description: Option<String>描述。
content: Option<SkillVersionContent>版本内容。
metadata: BTreeMap<String, String>自定义 metadata。
extra: BTreeMap<String, Value>额外字段。
Trait Implementations§
Source§impl Clone for SkillVersionCreateParams
impl Clone for SkillVersionCreateParams
Source§fn clone(&self) -> SkillVersionCreateParams
fn clone(&self) -> SkillVersionCreateParams
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 SkillVersionCreateParams
impl Debug for SkillVersionCreateParams
Source§impl Default for SkillVersionCreateParams
impl Default for SkillVersionCreateParams
Source§fn default() -> SkillVersionCreateParams
fn default() -> SkillVersionCreateParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SkillVersionCreateParams
impl<'de> Deserialize<'de> for SkillVersionCreateParams
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 SkillVersionCreateParams
impl RefUnwindSafe for SkillVersionCreateParams
impl Send for SkillVersionCreateParams
impl Sync for SkillVersionCreateParams
impl Unpin for SkillVersionCreateParams
impl UnsafeUnpin for SkillVersionCreateParams
impl UnwindSafe for SkillVersionCreateParams
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