pub struct SkillInstallSpec {
pub kind: InstallKind,
pub formula: Option<String>,
pub package: Option<String>,
pub module: Option<String>,
pub url: Option<String>,
pub archive: Option<String>,
pub extract: Option<bool>,
pub strip_components: Option<u32>,
pub target_dir: Option<String>,
pub os: Vec<String>,
}Fields§
§kind: InstallKind§formula: Option<String>§package: Option<String>§module: Option<String>§url: Option<String>§archive: Option<String>§extract: Option<bool>§strip_components: Option<u32>§target_dir: Option<String>§os: Vec<String>Trait Implementations§
Source§impl Clone for SkillInstallSpec
impl Clone for SkillInstallSpec
Source§fn clone(&self) -> SkillInstallSpec
fn clone(&self) -> SkillInstallSpec
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 SkillInstallSpec
impl Debug for SkillInstallSpec
Source§impl<'de> Deserialize<'de> for SkillInstallSpec
impl<'de> Deserialize<'de> for SkillInstallSpec
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
Auto Trait Implementations§
impl Freeze for SkillInstallSpec
impl RefUnwindSafe for SkillInstallSpec
impl Send for SkillInstallSpec
impl Sync for SkillInstallSpec
impl Unpin for SkillInstallSpec
impl UnsafeUnpin for SkillInstallSpec
impl UnwindSafe for SkillInstallSpec
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