pub struct BinstallOverride {
pub pkg_url: Option<String>,
pub pkg_fmt: Option<String>,
pub bin_dir: Option<String>,
}Fields§
§pkg_url: Option<String>Custom download URL template for this target triple (supports templates).
Lets you point cargo-binstall at a per-target asset name such as
myapp-{{ Version }}-linux-amd64.tar.gz.
pkg_fmt: Option<String>Package format hint for this target triple: tgz, tar.gz, tar.xz, zip, bin, etc.
bin_dir: Option<String>Directory within the archive where binaries are located for this target triple.
Trait Implementations§
Source§impl Clone for BinstallOverride
impl Clone for BinstallOverride
Source§fn clone(&self) -> BinstallOverride
fn clone(&self) -> BinstallOverride
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 BinstallOverride
impl Debug for BinstallOverride
Source§impl Default for BinstallOverride
impl Default for BinstallOverride
Source§fn default() -> BinstallOverride
fn default() -> BinstallOverride
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BinstallOverridewhere
BinstallOverride: Default,
impl<'de> Deserialize<'de> for BinstallOverridewhere
BinstallOverride: Default,
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 JsonSchema for BinstallOverride
impl JsonSchema for BinstallOverride
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for BinstallOverride
impl RefUnwindSafe for BinstallOverride
impl Send for BinstallOverride
impl Sync for BinstallOverride
impl Unpin for BinstallOverride
impl UnsafeUnpin for BinstallOverride
impl UnwindSafe for BinstallOverride
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