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§
Source§impl Debug for AndroidError
impl Debug for AndroidError
Source§impl Display for AndroidError
impl Display for AndroidError
Source§impl Error for AndroidError
impl Error for AndroidError
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<Error> for AndroidError
impl From<Error> for AndroidError
Source§impl From<Error> for AndroidError
impl From<Error> for AndroidError
Source§impl From<TrySendError<Signal>> for AndroidError
impl From<TrySendError<Signal>> for AndroidError
Source§fn from(source: TrySendError<Signal>) -> Self
fn from(source: TrySendError<Signal>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AndroidError
impl RefUnwindSafe for AndroidError
impl Send for AndroidError
impl Sync for AndroidError
impl Unpin for AndroidError
impl UnwindSafe for AndroidError
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