pub struct InstallLocalSkillResult {
pub status: InstallStatus,
pub destination: PathBuf,
pub skill_name: String,
pub source: String,
pub source_label: String,
pub skill_id: Option<String>,
pub version: Option<String>,
pub digest: String,
pub profile_digest: Option<String>,
pub profile_state_path: Option<PathBuf>,
pub runner_names: Vec<String>,
pub trust_tier: Option<TrustTier>,
}Fields§
§status: InstallStatus§destination: PathBuf§skill_name: String§source: String§source_label: String§skill_id: Option<String>§version: Option<String>§digest: String§profile_digest: Option<String>§profile_state_path: Option<PathBuf>§runner_names: Vec<String>§trust_tier: Option<TrustTier>Trait Implementations§
Source§impl Clone for InstallLocalSkillResult
impl Clone for InstallLocalSkillResult
Source§fn clone(&self) -> InstallLocalSkillResult
fn clone(&self) -> InstallLocalSkillResult
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 InstallLocalSkillResult
impl Debug for InstallLocalSkillResult
impl Eq for InstallLocalSkillResult
Source§impl PartialEq for InstallLocalSkillResult
impl PartialEq for InstallLocalSkillResult
Source§fn eq(&self, other: &InstallLocalSkillResult) -> bool
fn eq(&self, other: &InstallLocalSkillResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for InstallLocalSkillResult
impl Serialize for InstallLocalSkillResult
impl StructuralPartialEq for InstallLocalSkillResult
Auto Trait Implementations§
impl Freeze for InstallLocalSkillResult
impl RefUnwindSafe for InstallLocalSkillResult
impl Send for InstallLocalSkillResult
impl Sync for InstallLocalSkillResult
impl Unpin for InstallLocalSkillResult
impl UnsafeUnpin for InstallLocalSkillResult
impl UnwindSafe for InstallLocalSkillResult
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.