pub struct SkillEntry {
pub name: String,
pub version: String,
pub sha: String,
pub manifest: String,
pub last_used_at: Option<i64>,
}Expand description
Row of skill_cache.
Fields§
§name: String§version: String§sha: String§manifest: String§last_used_at: Option<i64>Trait Implementations§
Source§impl Clone for SkillEntry
impl Clone for SkillEntry
Source§fn clone(&self) -> SkillEntry
fn clone(&self) -> SkillEntry
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 SkillEntry
impl Debug for SkillEntry
Source§impl PartialEq for SkillEntry
impl PartialEq for SkillEntry
Source§fn eq(&self, other: &SkillEntry) -> bool
fn eq(&self, other: &SkillEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SkillEntry
impl StructuralPartialEq for SkillEntry
Auto Trait Implementations§
impl Freeze for SkillEntry
impl RefUnwindSafe for SkillEntry
impl Send for SkillEntry
impl Sync for SkillEntry
impl Unpin for SkillEntry
impl UnsafeUnpin for SkillEntry
impl UnwindSafe for SkillEntry
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