Enum alloy_sol_types::ContractError

source ·
pub enum ContractError<T> {
    CustomError(T),
    Revert(Revert),
    Panic(Panic),
}
Expand description

A generic contract error.

Contains a Revert or Panic error, or a custom error.

If you want an empty CustomError variant, use GenericContractError.

Variants§

§

CustomError(T)

A contract’s custom error.

§

Revert(Revert)

A generic revert. See Revert for more information.

§

Panic(Panic)

A panic. See Panic for more information.

Implementations§

source§

impl<T> ContractError<T>

source

pub const fn is_custom_error(&self) -> bool

Returns true if self matches CustomError.

source

pub const fn as_custom_error(&self) -> Option<&T>

Returns an immutable reference to the inner custom error if self matches CustomError.

source

pub fn as_custom_error_mut(&mut self) -> Option<&mut T>

Returns a mutable reference to the inner custom error if self matches CustomError.

source

pub const fn is_revert(&self) -> bool

Returns true if self matches Revert.

source

pub const fn as_revert(&self) -> Option<&Revert>

Returns an immutable reference to the inner Revert if self matches Revert.

source

pub fn as_revert_mut(&mut self) -> Option<&mut Revert>

Returns a mutable reference to the inner Revert if self matches Revert.

source

pub const fn is_panic(&self) -> bool

Returns true if self matches Panic.

source

pub const fn as_panic(&self) -> Option<&Panic>

Returns an immutable reference to the inner Panic if self matches Panic.

source

pub fn as_panic_mut(&mut self) -> Option<&mut Panic>

Returns a mutable reference to the inner Panic if self matches Panic.

Trait Implementations§

source§

impl<T: Clone> Clone for ContractError<T>

source§

fn clone(&self) -> ContractError<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug> Debug for ContractError<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: Display> Display for ContractError<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: Error + 'static> Error for ContractError<T>

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl<T> From<ContractError<T>> for RevertReason<T>

Converts a ContractError<T> into a RevertReason<T>.

source§

fn from(error: ContractError<T>) -> Self

Converts to this type from the input type.
source§

impl<T> From<Panic> for ContractError<T>

source§

fn from(value: Panic) -> Self

Converts to this type from the input type.
source§

impl<T> From<Revert> for ContractError<T>

source§

fn from(value: Revert) -> Self

Converts to this type from the input type.
source§

impl<T: SolInterface> From<T> for ContractError<T>

source§

fn from(value: T) -> Self

Converts to this type from the input type.
source§

impl<T: PartialEq> PartialEq for ContractError<T>

source§

fn eq(&self, other: &ContractError<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: SolInterface> SolInterface for ContractError<T>

source§

const NAME: &'static str = "ContractError"

The name of this type.
source§

const MIN_DATA_LENGTH: usize = _

The minimum length of the data for this type. Read more
source§

const COUNT: usize = _

The number of variants.
source§

fn selector(&self) -> [u8; 4]

The selector of this instance.
source§

fn selector_at(i: usize) -> Option<[u8; 4]>

The selector of this type at the given index, used in selectors. Read more
source§

fn valid_selector(selector: [u8; 4]) -> bool

Returns true if the given selector is known to this type.
source§

fn abi_decode_raw( selector: [u8; 4], data: &[u8], validate: bool, ) -> Result<Self>

ABI-decodes the given data into one of the variants of self.
source§

fn abi_encoded_size(&self) -> usize

The size of the encoded data, without any selectors.
source§

fn abi_encode_raw(&self, out: &mut Vec<u8>)

ABI-encodes self into the given buffer, without any selectors.
source§

fn type_check(selector: [u8; 4]) -> Result<()>

Returns an error if the given selector is not known to this type.
source§

fn selectors() -> Selectors<Self>

Returns an iterator over the selectors of this type.
source§

fn abi_encode(&self) -> Vec<u8>

ABI-encodes self into the given buffer.
source§

fn abi_decode(data: &[u8], validate: bool) -> Result<Self>

ABI-decodes the given data into one of the variants of self.
source§

impl<T> TryFrom<ContractError<T>> for Panic

§

type Error = ContractError<T>

The type returned in the event of a conversion error.
source§

fn try_from(value: ContractError<T>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<T> TryFrom<ContractError<T>> for Revert

§

type Error = ContractError<T>

The type returned in the event of a conversion error.
source§

fn try_from(value: ContractError<T>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<T: Eq> Eq for ContractError<T>

source§

impl<T> StructuralPartialEq for ContractError<T>

Auto Trait Implementations§

§

impl<T> Freeze for ContractError<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for ContractError<T>
where T: RefUnwindSafe,

§

impl<T> Send for ContractError<T>
where T: Send,

§

impl<T> Sync for ContractError<T>
where T: Sync,

§

impl<T> Unpin for ContractError<T>
where T: Unpin,

§

impl<T> UnwindSafe for ContractError<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.