pub enum StepResult {
End,
Ok,
Call(Call, CallMode),
Return(Vec<u8>),
Revert(Vec<u8>),
Halt(HaltReason),
Fetch(Fetch),
}Variants§
Trait Implementations§
Source§impl From<HaltReason> for StepResult
impl From<HaltReason> for StepResult
Source§fn from(reason: HaltReason) -> Self
fn from(reason: HaltReason) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StepResult
impl RefUnwindSafe for StepResult
impl Send for StepResult
impl Sync for StepResult
impl Unpin for StepResult
impl UnsafeUnpin for StepResult
impl UnwindSafe for StepResult
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