pub struct ZSignOptions {Show 18 fields
pub input_path: String,
pub cert_file: Option<String>,
pub pkey_file: Option<String>,
pub prov_file: Option<String>,
pub password: Option<String>,
pub adhoc: bool,
pub sha256_only: bool,
pub bundle_id: Option<String>,
pub bundle_name: Option<String>,
pub bundle_version: Option<String>,
pub entitlements_file: Option<String>,
pub dylib_files: Vec<String>,
pub weak_inject: bool,
pub force: bool,
pub check_signature: bool,
pub temp_folder: Option<String>,
pub debug: bool,
pub quiet: bool,
}Fields§
§input_path: String§cert_file: Option<String>§pkey_file: Option<String>§prov_file: Option<String>§password: Option<String>§adhoc: bool§sha256_only: bool§bundle_id: Option<String>§bundle_name: Option<String>§bundle_version: Option<String>§entitlements_file: Option<String>§dylib_files: Vec<String>§weak_inject: bool§force: bool§check_signature: bool§temp_folder: Option<String>§debug: bool§quiet: boolImplementations§
Source§impl ZSignOptions
impl ZSignOptions
pub fn new<S: Into<String>>(input_path: S) -> Self
pub fn with_adhoc_signing(self) -> Self
pub fn with_cert_file<S: Into<String>>(self, cert_file: S) -> Self
pub fn with_pkey_file<S: Into<String>>(self, pkey_file: S) -> Self
pub fn with_prov_file<S: Into<String>>(self, prov_file: S) -> Self
pub fn with_password<S: Into<String>>(self, password: S) -> Self
pub fn with_bundle_id<S: Into<String>>(self, bundle_id: S) -> Self
pub fn with_bundle_name<S: Into<String>>(self, bundle_name: S) -> Self
pub fn with_bundle_version<S: Into<String>>(self, bundle_version: S) -> Self
pub fn with_entitlements_file<S: Into<String>>( self, entitlements_file: S, ) -> Self
pub fn with_temp_folder<S: Into<String>>(self, temp_folder: S) -> Self
pub fn with_weak_inject(self) -> Self
pub fn with_force(self) -> Self
pub fn with_check_signature(self) -> Self
pub fn with_quiet(self) -> Self
pub fn with_debug(self) -> Self
pub fn add_dylib<S: Into<String>>(self, dylib_path: S) -> Self
pub fn sign(&self) -> Result<(), ZSignError>
Trait Implementations§
Source§impl Debug for ZSignOptions
impl Debug for ZSignOptions
Source§impl Default for ZSignOptions
impl Default for ZSignOptions
Source§fn default() -> ZSignOptions
fn default() -> ZSignOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ZSignOptions
impl RefUnwindSafe for ZSignOptions
impl Send for ZSignOptions
impl Sync for ZSignOptions
impl Unpin for ZSignOptions
impl UnwindSafe for ZSignOptions
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