#[non_exhaustive]pub enum DeletedSkillVersionObjectType {
Known(DeletedSkillVersionObjectTypeKnown),
Unknown(String),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Known(DeletedSkillVersionObjectTypeKnown)
Unknown(String)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DeletedSkillVersionObjectType
impl<'de> Deserialize<'de> for DeletedSkillVersionObjectType
Source§fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DeletedSkillVersionObjectType
impl StructuralPartialEq for DeletedSkillVersionObjectType
Auto Trait Implementations§
impl Freeze for DeletedSkillVersionObjectType
impl RefUnwindSafe for DeletedSkillVersionObjectType
impl Send for DeletedSkillVersionObjectType
impl Sync for DeletedSkillVersionObjectType
impl Unpin for DeletedSkillVersionObjectType
impl UnsafeUnpin for DeletedSkillVersionObjectType
impl UnwindSafe for DeletedSkillVersionObjectType
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