pub struct ActorExecutionError {
pub gas_amount: GasAmount,
pub reason: ActorExecutionErrorReplyReason,
}
Expand description
Actor execution error.
Fields§
§gas_amount: GasAmount
Gas amount of the execution.
reason: ActorExecutionErrorReplyReason
Error text.
Trait Implementations§
Source§impl Debug for ActorExecutionError
impl Debug for ActorExecutionError
Source§impl Display for ActorExecutionError
impl Display for ActorExecutionError
Source§impl From<ActorExecutionError> for ActorSystemError<ActorExecutionError, SystemExecutionError>
impl From<ActorExecutionError> for ActorSystemError<ActorExecutionError, SystemExecutionError>
Source§fn from(err: ActorExecutionError) -> Self
fn from(err: ActorExecutionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ActorExecutionError
impl RefUnwindSafe for ActorExecutionError
impl Send for ActorExecutionError
impl Sync for ActorExecutionError
impl Unpin for ActorExecutionError
impl UnwindSafe for ActorExecutionError
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