pub struct RegistrySkillResolution {Show 18 fields
pub markdown: String,
pub profile_document: Option<String>,
pub profile_digest: Option<String>,
pub package_files: Vec<RegistryPackageFile>,
pub package_digest: Option<String>,
pub runner_names: Vec<String>,
pub skill_id: String,
pub name: String,
pub version: String,
pub digest: String,
pub signed_manifest: Option<RegistrySignedManifest>,
pub source: String,
pub source_label: String,
pub source_type: String,
pub trust_tier: TrustTier,
pub registry_url: Option<String>,
pub install_command: String,
pub run_command: String,
}Fields§
§markdown: String§profile_document: Option<String>§profile_digest: Option<String>§package_files: Vec<RegistryPackageFile>§package_digest: Option<String>§runner_names: Vec<String>§skill_id: String§name: String§version: String§digest: String§signed_manifest: Option<RegistrySignedManifest>§source: String§source_label: String§source_type: String§trust_tier: TrustTier§registry_url: Option<String>§install_command: String§run_command: StringTrait Implementations§
Source§impl Clone for RegistrySkillResolution
impl Clone for RegistrySkillResolution
Source§fn clone(&self) -> RegistrySkillResolution
fn clone(&self) -> RegistrySkillResolution
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 RegistrySkillResolution
impl Debug for RegistrySkillResolution
Source§impl<'de> Deserialize<'de> for RegistrySkillResolution
impl<'de> Deserialize<'de> for RegistrySkillResolution
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 RegistrySkillResolution
impl PartialEq for RegistrySkillResolution
Source§fn eq(&self, other: &RegistrySkillResolution) -> bool
fn eq(&self, other: &RegistrySkillResolution) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RegistrySkillResolution
impl Serialize for RegistrySkillResolution
impl StructuralPartialEq for RegistrySkillResolution
Auto Trait Implementations§
impl Freeze for RegistrySkillResolution
impl RefUnwindSafe for RegistrySkillResolution
impl Send for RegistrySkillResolution
impl Sync for RegistrySkillResolution
impl Unpin for RegistrySkillResolution
impl UnsafeUnpin for RegistrySkillResolution
impl UnwindSafe for RegistrySkillResolution
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