pub struct MacosPackageConfig {
pub bundle_id: Option<String>,
pub team_id: Option<String>,
pub minimum_os: Option<String>,
pub application_category: Option<String>,
pub entitlements: Option<String>,
pub provisioning_profile: Option<String>,
pub signing_identity: Option<String>,
pub installer_identity: Option<String>,
pub notarize: Option<bool>,
pub pkg_builder: Option<String>,
pub cargo_features: Vec<String>,
pub cargo_no_default_features: bool,
}Fields§
§bundle_id: Option<String>§team_id: Option<String>§minimum_os: Option<String>§application_category: Option<String>§entitlements: Option<String>§provisioning_profile: Option<String>§signing_identity: Option<String>§installer_identity: Option<String>§notarize: Option<bool>§pkg_builder: Option<String>§cargo_features: Vec<String>§cargo_no_default_features: boolTrait Implementations§
Source§impl Clone for MacosPackageConfig
impl Clone for MacosPackageConfig
Source§fn clone(&self) -> MacosPackageConfig
fn clone(&self) -> MacosPackageConfig
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 MacosPackageConfig
impl Debug for MacosPackageConfig
Source§impl Default for MacosPackageConfig
impl Default for MacosPackageConfig
Source§fn default() -> MacosPackageConfig
fn default() -> MacosPackageConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MacosPackageConfig
impl<'de> Deserialize<'de> for MacosPackageConfig
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
impl Eq for MacosPackageConfig
Source§impl PartialEq for MacosPackageConfig
impl PartialEq for MacosPackageConfig
impl StructuralPartialEq for MacosPackageConfig
Auto Trait Implementations§
impl Freeze for MacosPackageConfig
impl RefUnwindSafe for MacosPackageConfig
impl Send for MacosPackageConfig
impl Sync for MacosPackageConfig
impl Unpin for MacosPackageConfig
impl UnsafeUnpin for MacosPackageConfig
impl UnwindSafe for MacosPackageConfig
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.