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: StdError + 'static> Error for ContractError<T>
Available on crate feature std
only.
impl<T: StdError + 'static> Error for ContractError<T>
Available on crate feature
std
only.Source§fn source(&self) -> Option<&(dyn StdError + 'static)>
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
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§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
Source§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
Source§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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)