pub struct GlobalLockedSkillEntry {Show 14 fields
pub id: String,
pub name: String,
pub version: String,
pub source: SkillSource,
pub source_name: Option<String>,
pub source_url: Option<String>,
pub source_branch: Option<String>,
pub commit_hash: Option<String>,
pub checksum: Option<String>,
pub dependencies: Vec<String>,
pub groups: Vec<String>,
pub installed_at: DateTime<Utc>,
pub last_checked_at: Option<DateTime<Utc>>,
pub last_updated_at: Option<DateTime<Utc>>,
}Expand description
A single entry in the global lock with operational timestamps.
Fields§
§id: String§name: String§version: String§source: SkillSource§source_name: Option<String>§source_url: Option<String>§source_branch: Option<String>§commit_hash: Option<String>§checksum: Option<String>§dependencies: Vec<String>§groups: Vec<String>§installed_at: DateTime<Utc>§last_checked_at: Option<DateTime<Utc>>§last_updated_at: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for GlobalLockedSkillEntry
impl Clone for GlobalLockedSkillEntry
Source§fn clone(&self) -> GlobalLockedSkillEntry
fn clone(&self) -> GlobalLockedSkillEntry
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 GlobalLockedSkillEntry
impl Debug for GlobalLockedSkillEntry
Source§impl<'de> Deserialize<'de> for GlobalLockedSkillEntry
impl<'de> Deserialize<'de> for GlobalLockedSkillEntry
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 GlobalLockedSkillEntry
impl PartialEq for GlobalLockedSkillEntry
Source§fn eq(&self, other: &GlobalLockedSkillEntry) -> bool
fn eq(&self, other: &GlobalLockedSkillEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GlobalLockedSkillEntry
impl Serialize for GlobalLockedSkillEntry
impl StructuralPartialEq for GlobalLockedSkillEntry
Auto Trait Implementations§
impl Freeze for GlobalLockedSkillEntry
impl RefUnwindSafe for GlobalLockedSkillEntry
impl Send for GlobalLockedSkillEntry
impl Sync for GlobalLockedSkillEntry
impl Unpin for GlobalLockedSkillEntry
impl UnsafeUnpin for GlobalLockedSkillEntry
impl UnwindSafe for GlobalLockedSkillEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.