pub struct BinaryConfig {
pub name_template: Option<String>,
pub identifier_template: Option<String>,
pub version_format: Option<String>,
pub sign: Option<SignConfig>,
pub notarize: Option<NotarizeConfig>,
pub updater: Option<UpdaterConfig>,
}Expand description
Binary configuration
Fields§
§name_template: Option<String>Binary name template
identifier_template: Option<String>Binary identifier template
version_format: Option<String>Version format
sign: Option<SignConfig>Signing configuration
notarize: Option<NotarizeConfig>Notarization configuration
updater: Option<UpdaterConfig>Updater configuration
Trait Implementations§
Source§impl Clone for BinaryConfig
impl Clone for BinaryConfig
Source§fn clone(&self) -> BinaryConfig
fn clone(&self) -> BinaryConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 BinaryConfig
impl Debug for BinaryConfig
Source§impl<'de> Deserialize<'de> for BinaryConfig
impl<'de> Deserialize<'de> for BinaryConfig
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 BinaryConfig
impl RefUnwindSafe for BinaryConfig
impl Send for BinaryConfig
impl Sync for BinaryConfig
impl Unpin for BinaryConfig
impl UnwindSafe for BinaryConfig
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