pub struct ProjectLockedSkillEntry {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 editable: bool,
pub depth: u32,
pub parent_skill: Option<String>,
}Expand description
A single pinned skill entry in the project lock. No volatile timestamp fields — content is fully deterministic.
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>§editable: bool§depth: u32Depth in the dependency tree (0 = direct dependency)
parent_skill: Option<String>ID of the skill that pulled this one in (for transitive deps)
Trait Implementations§
Source§impl Clone for ProjectLockedSkillEntry
impl Clone for ProjectLockedSkillEntry
Source§fn clone(&self) -> ProjectLockedSkillEntry
fn clone(&self) -> ProjectLockedSkillEntry
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 ProjectLockedSkillEntry
impl Debug for ProjectLockedSkillEntry
Source§impl<'de> Deserialize<'de> for ProjectLockedSkillEntry
impl<'de> Deserialize<'de> for ProjectLockedSkillEntry
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 ProjectLockedSkillEntry
impl PartialEq for ProjectLockedSkillEntry
Source§fn eq(&self, other: &ProjectLockedSkillEntry) -> bool
fn eq(&self, other: &ProjectLockedSkillEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProjectLockedSkillEntry
impl Serialize for ProjectLockedSkillEntry
impl StructuralPartialEq for ProjectLockedSkillEntry
Auto Trait Implementations§
impl Freeze for ProjectLockedSkillEntry
impl RefUnwindSafe for ProjectLockedSkillEntry
impl Send for ProjectLockedSkillEntry
impl Sync for ProjectLockedSkillEntry
impl Unpin for ProjectLockedSkillEntry
impl UnsafeUnpin for ProjectLockedSkillEntry
impl UnwindSafe for ProjectLockedSkillEntry
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.