alloy_sol_types

Enum 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: StdError + 'static> Error for ContractError<T>

Available on crate feature std only.
Source§

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

Returns 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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

Source§

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

Source§

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§

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<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> ToOwned for T
where T: Clone,

Source§

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>,

Source§

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>,

Source§

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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V