pub enum AsyncRuntimeError {
FailedToBuild(Error),
}Variants§
Trait Implementations§
Source§impl<UT> ConvertError<UT> for AsyncRuntimeError
impl<UT> ConvertError<UT> for AsyncRuntimeError
fn try_convert_unexpected_callback_error( e: UnexpectedUniFFICallbackError, ) -> Result<Self>
Source§impl Debug for AsyncRuntimeError
impl Debug for AsyncRuntimeError
Source§impl Display for AsyncRuntimeError
impl Display for AsyncRuntimeError
Source§impl Error for AsyncRuntimeError
impl Error for AsyncRuntimeError
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 AsyncRuntimeError
impl From<Error> for AsyncRuntimeError
Source§impl<UT> Lift<UT> for AsyncRuntimeError
impl<UT> Lift<UT> for AsyncRuntimeError
type FfiType = RustBuffer
fn try_read(buf: &mut &[u8]) -> Result<Self>
fn try_lift(v: RustBuffer) -> Result<Self>
Source§fn try_lift_from_rust_buffer(v: RustBuffer) -> Result<Self, Error>
fn try_lift_from_rust_buffer(v: RustBuffer) -> Result<Self, Error>
Convenience method
Source§impl<UT> Lower<UT> for AsyncRuntimeError
impl<UT> Lower<UT> for AsyncRuntimeError
type FfiType = RustBuffer
fn write(obj: Self, buf: &mut Vec<u8>)
fn lower(obj: Self) -> RustBuffer
Source§fn lower_into_rust_buffer(obj: Self) -> RustBuffer
fn lower_into_rust_buffer(obj: Self) -> RustBuffer
Convenience method
Source§impl<UT> LowerError<UT> for AsyncRuntimeError
impl<UT> LowerError<UT> for AsyncRuntimeError
Source§fn lower_error(obj: Self) -> RustBuffer
fn lower_error(obj: Self) -> RustBuffer
Lower this value for scaffolding function return Read more
Source§impl<UT> TypeId<UT> for AsyncRuntimeError
impl<UT> TypeId<UT> for AsyncRuntimeError
Auto Trait Implementations§
impl Freeze for AsyncRuntimeError
impl !RefUnwindSafe for AsyncRuntimeError
impl Send for AsyncRuntimeError
impl Sync for AsyncRuntimeError
impl Unpin for AsyncRuntimeError
impl !UnwindSafe for AsyncRuntimeError
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