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 provided singleton name not available
SingletonNotRegistered(String)
Singleton with provided name not found or haven’t registered
UnsupportedJniRustType(String)
Unsupported JNI Rust Type
WrongJniRustType
Wrong JNI Rust Type
Jni(Error)
Rust Jni library error
Anyhow(Error)
Anyhow library errors
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
1.30.0 · 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