pub struct SkillVersionResource {
pub object: String,
pub id: String,
pub skill_id: String,
pub version: String,
pub created_at: u64,
pub name: String,
pub description: String,
}Available on crate feature
skill-types only.Expand description
Represents a skill version object.
Fields§
§object: StringThe object type, which is always skill.version.
id: StringUnique identifier for the skill version.
skill_id: StringIdentifier of the skill for this version.
version: StringVersion number for this skill.
created_at: u64Unix timestamp (in seconds) for when the skill version was created.
name: StringName of the skill version.
description: StringDescription of the skill version.
Trait Implementations§
Source§impl Clone for SkillVersionResource
impl Clone for SkillVersionResource
Source§fn clone(&self) -> SkillVersionResource
fn clone(&self) -> SkillVersionResource
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 SkillVersionResource
impl Debug for SkillVersionResource
Source§impl<'de> Deserialize<'de> for SkillVersionResource
impl<'de> Deserialize<'de> for SkillVersionResource
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 SkillVersionResource
impl PartialEq for SkillVersionResource
Source§impl Serialize for SkillVersionResource
impl Serialize for SkillVersionResource
impl StructuralPartialEq for SkillVersionResource
Auto Trait Implementations§
impl Freeze for SkillVersionResource
impl RefUnwindSafe for SkillVersionResource
impl Send for SkillVersionResource
impl Sync for SkillVersionResource
impl Unpin for SkillVersionResource
impl UnsafeUnpin for SkillVersionResource
impl UnwindSafe for SkillVersionResource
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