pub struct DeletedSkillVersionResource {
pub object: String,
pub deleted: bool,
pub id: String,
pub version: String,
}Available on crate feature
skill-types only.Expand description
Confirmation of skill version deletion.
Fields§
§object: StringThe object type, which is always skill.version.deleted.
deleted: boolWhether the skill version was deleted.
id: StringThe skill version ID.
version: StringThe deleted skill version number.
Trait Implementations§
Source§impl Clone for DeletedSkillVersionResource
impl Clone for DeletedSkillVersionResource
Source§fn clone(&self) -> DeletedSkillVersionResource
fn clone(&self) -> DeletedSkillVersionResource
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 DeletedSkillVersionResource
impl Debug for DeletedSkillVersionResource
Source§impl<'de> Deserialize<'de> for DeletedSkillVersionResource
impl<'de> Deserialize<'de> for DeletedSkillVersionResource
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
impl StructuralPartialEq for DeletedSkillVersionResource
Auto Trait Implementations§
impl Freeze for DeletedSkillVersionResource
impl RefUnwindSafe for DeletedSkillVersionResource
impl Send for DeletedSkillVersionResource
impl Sync for DeletedSkillVersionResource
impl Unpin for DeletedSkillVersionResource
impl UnsafeUnpin for DeletedSkillVersionResource
impl UnwindSafe for DeletedSkillVersionResource
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