pub struct AppleBuildCommand {
pub shared: SharedBuildCommand,
pub bin: Option<String>,
pub target: Vec<AppleTarget>,
pub profile_name: Option<String>,
pub profile_path: Option<PathBuf>,
pub team_identifier: Option<String>,
pub identity: Option<String>,
}
Fields§
§bin: Option<String>
Specify custom cargo binary
target: Vec<AppleTarget>
Build for the given apple architecture.
Supported targets are: ’aarch64-apple-ios,
armv7-apple-ios,
armv7s-apple-ios,
i386-apple-ios,
x86_64-apple-ios`
profile_name: Option<String>
Provisioning profile name to find in this directory: ~/Library/MobileDevice/Provisioning\ Profiles/
profile_path: Option<PathBuf>
Absolute path to provisioning profile
team_identifier: Option<String>
The team identifier of your signing identity
identity: Option<String>
The id of the identity used for signing. It won’t start the signing process until you provide this flag
Implementations§
Trait Implementations§
Source§impl Clap for AppleBuildCommand
impl Clap for AppleBuildCommand
Source§fn parse_from<I, T>(itr: I) -> Self
fn parse_from<I, T>(itr: I) -> Self
Parse from iterator, exit on error
Source§fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
Parse from iterator, return Err on error.
Source§impl Clone for AppleBuildCommand
impl Clone for AppleBuildCommand
Source§fn clone(&self) -> AppleBuildCommand
fn clone(&self) -> AppleBuildCommand
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 AppleBuildCommand
impl Debug for AppleBuildCommand
Source§impl FromArgMatches for AppleBuildCommand
impl FromArgMatches for AppleBuildCommand
Source§fn from_arg_matches(matches: &ArgMatches) -> Self
fn from_arg_matches(matches: &ArgMatches) -> Self
It’s common to have an “application context” struct (sometimes called
config) that represents all the normalized values after being processed by
the CLI. Read more
Auto Trait Implementations§
impl Freeze for AppleBuildCommand
impl RefUnwindSafe for AppleBuildCommand
impl Send for AppleBuildCommand
impl Sync for AppleBuildCommand
impl Unpin for AppleBuildCommand
impl UnwindSafe for AppleBuildCommand
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