pub struct KeywordSkillCard {
pub created_at: Option<DateTime<Utc>>,
pub type: KeywordSkillCardType,
pub skill_card_type: KeywordSkillCardSkillCardType,
pub skill_card_title: Option<KeywordSkillCardSkillCardTitle>,
pub skill: KeywordSkillCardSkill,
pub invocation: KeywordSkillCardInvocation,
pub entries: Vec<KeywordSkillCardEntries>,
}Fields§
§created_at: Option<DateTime<Utc>>§type: KeywordSkillCardType§skill_card_type: KeywordSkillCardSkillCardType§skill_card_title: Option<KeywordSkillCardSkillCardTitle>§skill: KeywordSkillCardSkill§invocation: KeywordSkillCardInvocation§entries: Vec<KeywordSkillCardEntries>Trait Implementations§
Source§impl Clone for KeywordSkillCard
impl Clone for KeywordSkillCard
Source§fn clone(&self) -> KeywordSkillCard
fn clone(&self) -> KeywordSkillCard
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 KeywordSkillCard
impl Debug for KeywordSkillCard
Source§impl Default for KeywordSkillCard
impl Default for KeywordSkillCard
Source§fn default() -> KeywordSkillCard
fn default() -> KeywordSkillCard
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KeywordSkillCard
impl<'de> Deserialize<'de> for KeywordSkillCard
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 KeywordSkillCard
impl PartialEq for KeywordSkillCard
Source§impl Serialize for KeywordSkillCard
impl Serialize for KeywordSkillCard
impl StructuralPartialEq for KeywordSkillCard
Auto Trait Implementations§
impl Freeze for KeywordSkillCard
impl RefUnwindSafe for KeywordSkillCard
impl Send for KeywordSkillCard
impl Sync for KeywordSkillCard
impl Unpin for KeywordSkillCard
impl UnsafeUnpin for KeywordSkillCard
impl UnwindSafe for KeywordSkillCard
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