pub struct ManagedAsyncCallError<M>where
M: ManagedTypeApi,{
pub err_code: u32,
pub err_msg: ManagedBuffer<M>,
}
Fields§
§err_code: u32
§err_msg: ManagedBuffer<M>
Auto Trait Implementations§
impl<M> Freeze for ManagedAsyncCallError<M>
impl<M> RefUnwindSafe for ManagedAsyncCallError<M>
impl<M> Send for ManagedAsyncCallError<M>
impl<M> Sync for ManagedAsyncCallError<M>
impl<M> Unpin for ManagedAsyncCallError<M>
impl<M> UnwindSafe for ManagedAsyncCallError<M>
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
Source§impl<T> InterpretableFrom<T> for T
impl<T> InterpretableFrom<T> for T
fn interpret_from(from: T, _context: &InterpreterContext) -> T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more