pub struct MacOSSignConfig {
pub identity: Option<String>,
pub entitlements: Option<String>,
pub hardened_runtime: Option<bool>,
pub gatekeeper_assess: Option<bool>,
}Expand description
macOS signing configuration
Fields§
§identity: Option<String>Signing identity
entitlements: Option<String>Entitlements file path
hardened_runtime: Option<bool>Enable hardened runtime
gatekeeper_assess: Option<bool>Gatekeeper assessment
Trait Implementations§
Source§impl Clone for MacOSSignConfig
impl Clone for MacOSSignConfig
Source§fn clone(&self) -> MacOSSignConfig
fn clone(&self) -> MacOSSignConfig
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 MacOSSignConfig
impl Debug for MacOSSignConfig
Source§impl<'de> Deserialize<'de> for MacOSSignConfig
impl<'de> Deserialize<'de> for MacOSSignConfig
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 MacOSSignConfig
impl RefUnwindSafe for MacOSSignConfig
impl Send for MacOSSignConfig
impl Sync for MacOSSignConfig
impl Unpin for MacOSSignConfig
impl UnwindSafe for MacOSSignConfig
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