Enum evm_core::ExitRevert
source · pub enum ExitRevert {
Reverted,
}
Expand description
Exit revert reason.
Variants
Reverted
Machine encountered an explicit revert.
Trait Implementations
sourceimpl Clone for ExitRevert
impl Clone for ExitRevert
sourcefn clone(&self) -> ExitRevert
fn clone(&self) -> ExitRevert
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ExitRevert
impl Debug for ExitRevert
sourceimpl From<ExitRevert> for ExitReason
impl From<ExitRevert> for ExitReason
sourcefn from(s: ExitRevert) -> Self
fn from(s: ExitRevert) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<ExitRevert> for ExitRevert
impl PartialEq<ExitRevert> for ExitRevert
sourcefn eq(&self, other: &ExitRevert) -> bool
fn eq(&self, other: &ExitRevert) -> bool
impl Copy for ExitRevert
impl Eq for ExitRevert
impl StructuralEq for ExitRevert
impl StructuralPartialEq for ExitRevert
Auto Trait Implementations
impl RefUnwindSafe for ExitRevert
impl Send for ExitRevert
impl Sync for ExitRevert
impl Unpin for ExitRevert
impl UnwindSafe for ExitRevert
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more