Enum crossbow_android::error::AndroidError
source · [−]pub enum AndroidError {
SignalSenderNotAvailable(String),
SingletonNotRegistered(String),
UnsupportedJniRustType(String),
WrongJniRustType,
Jni(Error),
Anyhow(Error),
}Expand description
Permissions error type.
Variants
SignalSenderNotAvailable(String)
Signal Sender with {0} singleton name not available
SingletonNotRegistered(String)
Singleton with {0} name not found or haven’t registered
UnsupportedJniRustType(String)
Unsupported JNI Rust Type: {0}
WrongJniRustType
Wrong JNI Rust Type
Jni(Error)
Rust Jni library error: {0:?}
Anyhow(Error)
Anyhow library errors: {0:?}
Trait Implementations
sourceimpl Debug for AndroidError
impl Debug for AndroidError
sourceimpl Display for AndroidError
impl Display for AndroidError
sourceimpl Error for AndroidError
impl Error for AndroidError
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<Error> for AndroidError
impl From<Error> for AndroidError
Auto Trait Implementations
impl !RefUnwindSafe for AndroidError
impl Send for AndroidError
impl Sync for AndroidError
impl Unpin for AndroidError
impl !UnwindSafe for AndroidError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more