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>
impl<T> ContractError<T>
sourcepub const fn is_custom_error(&self) -> bool
pub const fn is_custom_error(&self) -> bool
Returns true
if self
matches CustomError
.
sourcepub const fn as_custom_error(&self) -> Option<&T>
pub const fn as_custom_error(&self) -> Option<&T>
Returns an immutable reference to the inner custom error if self
matches CustomError
.
sourcepub fn as_custom_error_mut(&mut self) -> Option<&mut T>
pub fn as_custom_error_mut(&mut self) -> Option<&mut T>
Returns a mutable reference to the inner custom error if self
matches CustomError
.
sourcepub fn as_revert_mut(&mut self) -> Option<&mut Revert>
pub fn as_revert_mut(&mut self) -> Option<&mut Revert>
Trait Implementations§
source§impl<T: Clone> Clone for ContractError<T>
impl<T: Clone> Clone for ContractError<T>
source§fn clone(&self) -> ContractError<T>
fn clone(&self) -> ContractError<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T: Debug> Debug for ContractError<T>
impl<T: Debug> Debug for ContractError<T>
source§impl<T: Display> Display for ContractError<T>
impl<T: Display> Display for ContractError<T>
source§impl<T: Error + 'static> Error for ContractError<T>
impl<T: Error + 'static> Error for ContractError<T>
source§fn source(&self) -> Option<&(dyn Error + 'static)>
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
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl<T> From<ContractError<T>> for RevertReason<T>
impl<T> From<ContractError<T>> for RevertReason<T>
Converts a ContractError<T>
into a RevertReason<T>
.
source§fn from(error: ContractError<T>) -> Self
fn from(error: ContractError<T>) -> Self
Converts to this type from the input type.
source§impl<T> From<Panic> for ContractError<T>
impl<T> From<Panic> for ContractError<T>
source§impl<T> From<Revert> for ContractError<T>
impl<T> From<Revert> for ContractError<T>
source§impl<T: SolInterface> From<T> for ContractError<T>
impl<T: SolInterface> From<T> for ContractError<T>
source§impl<T: PartialEq> PartialEq for ContractError<T>
impl<T: PartialEq> PartialEq for ContractError<T>
source§fn eq(&self, other: &ContractError<T>) -> bool
fn eq(&self, other: &ContractError<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<T: SolInterface> SolInterface for ContractError<T>
impl<T: SolInterface> SolInterface for ContractError<T>
source§const MIN_DATA_LENGTH: usize = _
const MIN_DATA_LENGTH: usize = _
The minimum length of the data for this type. Read more
source§fn valid_selector(selector: [u8; 4]) -> bool
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>
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
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>)
fn abi_encode_raw(&self, out: &mut Vec<u8>)
ABI-encodes
self
into the given buffer, without any selectors.source§impl<T> TryFrom<ContractError<T>> for Panic
impl<T> TryFrom<ContractError<T>> for Panic
§type Error = ContractError<T>
type Error = ContractError<T>
The type returned in the event of a conversion error.
source§impl<T> TryFrom<ContractError<T>> for Revert
impl<T> TryFrom<ContractError<T>> for Revert
§type Error = ContractError<T>
type Error = ContractError<T>
The type returned in the event of a conversion error.
impl<T: Eq> Eq for ContractError<T>
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> 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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.