Enum crossbundle_tools::error::AppleError
source · [−]pub enum AppleError {
CodeSigningProfilesNotFound,
CodeSigningProfileNotProvided,
CodesignFailed(String),
ZipCommandFailed,
CodesignAllocateNotFound,
Simctl(Error),
TargetNotFound,
ResourcesNotFound,
AssetsNotFound,
FailedToFindInfoPlist(String),
Plist(Error),
}Expand description
Apple specific error type.
Variants
CodeSigningProfilesNotFound
Code signing profile not found
CodeSigningProfileNotProvided
Code signing profile not provided
CodesignFailed(String)
Codesign failed {0}
ZipCommandFailed
Failed to archive payload
CodesignAllocateNotFound
Codesign allocate not found
Simctl(Error)
Simctl error
TargetNotFound
Target dir does not exists
ResourcesNotFound
Resources dir does not exists
AssetsNotFound
Assets dir does not exists
FailedToFindInfoPlist(String)
Failed to find Info.plist in path: {0}
Plist(Error)
Plist data error
Trait Implementations
sourceimpl Debug for AppleError
impl Debug for AppleError
sourceimpl Display for AppleError
impl Display for AppleError
sourceimpl Error for AppleError
impl Error for AppleError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<AppleError> for Error
impl From<AppleError> for Error
sourcefn from(source: AppleError) -> Self
fn from(source: AppleError) -> Self
Performs the conversion.
sourceimpl From<Error> for AppleError
impl From<Error> for AppleError
Auto Trait Implementations
impl RefUnwindSafe for AppleError
impl Send for AppleError
impl Sync for AppleError
impl Unpin for AppleError
impl UnwindSafe for AppleError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more