pub struct ClawHubSkillMeta {
pub slug: String,
pub display_name: String,
pub summary: Option<String>,
pub tags: Option<HashMap<String, String>>,
pub created_at: i64,
pub updated_at: i64,
}Expand description
ClawHub skill meta.
Fields§
§slug: String§display_name: String§summary: Option<String>§created_at: i64§updated_at: i64Trait Implementations§
Source§impl Clone for ClawHubSkillMeta
impl Clone for ClawHubSkillMeta
Source§fn clone(&self) -> ClawHubSkillMeta
fn clone(&self) -> ClawHubSkillMeta
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 ClawHubSkillMeta
impl Debug for ClawHubSkillMeta
Source§impl<'de> Deserialize<'de> for ClawHubSkillMeta
impl<'de> Deserialize<'de> for ClawHubSkillMeta
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 ClawHubSkillMeta
impl RefUnwindSafe for ClawHubSkillMeta
impl Send for ClawHubSkillMeta
impl Sync for ClawHubSkillMeta
impl Unpin for ClawHubSkillMeta
impl UnsafeUnpin for ClawHubSkillMeta
impl UnwindSafe for ClawHubSkillMeta
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