Enum crossbow_android::error::AndroidError
source · [−]pub enum AndroidError {
CouldNotSendToSignalChannel(TrySendError<Signal>),
SignalSenderNotAvailable(String),
SingletonNotRegistered(String),
UnsupportedJniRustType(String),
WrongJniRustType,
Jni(Error),
Anyhow(Error),
}Expand description
Permissions error type.
Variants
CouldNotSendToSignalChannel(TrySendError<Signal>)
Could not send to channel {0:?}
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
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
sourceimpl From<Error> for AndroidError
impl From<Error> for AndroidError
sourceimpl From<TrySendError<Signal>> for AndroidError
impl From<TrySendError<Signal>> for AndroidError
sourcefn from(source: TrySendError<Signal>) -> Self
fn from(source: TrySendError<Signal>) -> Self
Converts to this type from the input type.
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