pub enum AppleError {
Show 13 variants
CodeSigningProfilesNotFound,
CodeSigningProfileNotProvided,
CodesignFailed(String),
ZipCommandFailed,
CodesignAllocateNotFound,
Simctl(Error),
TargetNotFound,
ResourcesNotFound,
InvalidBuildStrategy(String),
InvalidBuildTarget(String),
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: {0:?}
TargetNotFound
Target dir does not exists
ResourcesNotFound
Resources dir does not exists
InvalidBuildStrategy(String)
Unsupported or invalid build strategy: {0}
InvalidBuildTarget(String)
Unsupported or invalid target: {0}
AssetsNotFound
Assets dir does not exists
FailedToFindInfoPlist(String)
Failed to find Info.plist in path: {0}
Plist(Error)
Plist data error: {0:?}
Trait Implementations§
Source§impl Debug for AppleError
impl Debug for AppleError
Source§impl Display for AppleError
impl Display for AppleError
Source§impl Error for AppleError
impl Error for AppleError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<AppleError> for Error
impl From<AppleError> for Error
Source§fn from(source: AppleError) -> Self
fn from(source: AppleError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AppleError
impl !RefUnwindSafe for AppleError
impl Send for AppleError
impl Sync for AppleError
impl Unpin for AppleError
impl !UnwindSafe for AppleError
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more