pub enum IKeylessDeployErrors {
Show 22 variants
MalformedEncoding(MalformedEncoding),
NotContractCreation(NotContractCreation),
NotPreEIP155(NotPreEIP155),
NonZeroTxNonce(NonZeroTxNonce),
NoEtherTransfer(NoEtherTransfer),
InvalidSignature(InvalidSignature),
InsufficientBalance(InsufficientBalance),
ContractAlreadyExists(ContractAlreadyExists),
SignerNonceTooHigh(SignerNonceTooHigh),
ExecutionReverted(ExecutionReverted),
ExecutionHalted(ExecutionHalted),
ParentBudgetExceeded(ParentBudgetExceeded),
EmptyCodeDeployed(EmptyCodeDeployed),
NoContractCreated(NoContractCreated),
AddressMismatch(AddressMismatch),
GasLimitTooLow(GasLimitTooLow),
InsufficientComputeGas(InsufficientComputeGas),
InitCodeTooLarge(InitCodeTooLarge),
SignerHasCode(SignerHasCode),
InternalError(InternalError),
InvalidTransaction(InvalidTransaction),
NotIntercepted(NotIntercepted),
}Expand description
Container for all the IKeylessDeploy custom errors.
Variants§
MalformedEncoding(MalformedEncoding)
NotContractCreation(NotContractCreation)
NotPreEIP155(NotPreEIP155)
NonZeroTxNonce(NonZeroTxNonce)
NoEtherTransfer(NoEtherTransfer)
InvalidSignature(InvalidSignature)
InsufficientBalance(InsufficientBalance)
ContractAlreadyExists(ContractAlreadyExists)
SignerNonceTooHigh(SignerNonceTooHigh)
ExecutionReverted(ExecutionReverted)
ExecutionHalted(ExecutionHalted)
ParentBudgetExceeded(ParentBudgetExceeded)
EmptyCodeDeployed(EmptyCodeDeployed)
NoContractCreated(NoContractCreated)
AddressMismatch(AddressMismatch)
GasLimitTooLow(GasLimitTooLow)
InsufficientComputeGas(InsufficientComputeGas)
InitCodeTooLarge(InitCodeTooLarge)
SignerHasCode(SignerHasCode)
InternalError(InternalError)
InvalidTransaction(InvalidTransaction)
NotIntercepted(NotIntercepted)
Implementations§
Source§impl IKeylessDeployErrors
impl IKeylessDeployErrors
Sourcepub const SELECTORS: &'static [[u8; 4]]
pub const SELECTORS: &'static [[u8; 4]]
All the selectors of this enum.
Note that the selectors might not be in the same order as the variants. No guarantees are made about the order of the selectors.
Prefer using SolInterface methods instead.
Sourcepub const VARIANT_NAMES: &'static [&'static str]
pub const VARIANT_NAMES: &'static [&'static str]
The names of the variants in the same order as SELECTORS.
Sourcepub const SIGNATURES: &'static [&'static str]
pub const SIGNATURES: &'static [&'static str]
The signatures in the same order as SELECTORS.
Trait Implementations§
Source§impl Clone for IKeylessDeployErrors
impl Clone for IKeylessDeployErrors
Source§fn clone(&self) -> IKeylessDeployErrors
fn clone(&self) -> IKeylessDeployErrors
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl SolInterface for IKeylessDeployErrors
impl SolInterface for IKeylessDeployErrors
Source§const MIN_DATA_LENGTH: usize = 0usize
const MIN_DATA_LENGTH: usize = 0usize
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]) -> Result<Self>
fn abi_decode_raw(selector: [u8; 4], data: &[u8]) -> Result<Self>
ABI-decodes the given data into one of the variants of
self.Source§fn abi_decode_raw_validate(selector: [u8; 4], data: &[u8]) -> Result<Self>
fn abi_decode_raw_validate(selector: [u8; 4], data: &[u8]) -> Result<Self>
ABI-decodes the given data into one of the variants of
self, with validation. Read moreSource§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§fn type_check(selector: [u8; 4]) -> Result<(), Error>
fn type_check(selector: [u8; 4]) -> Result<(), Error>
Returns an error if the given selector is not known to this type.
Auto Trait Implementations§
impl !Freeze for IKeylessDeployErrors
impl RefUnwindSafe for IKeylessDeployErrors
impl Send for IKeylessDeployErrors
impl Sync for IKeylessDeployErrors
impl Unpin for IKeylessDeployErrors
impl UnsafeUnpin for IKeylessDeployErrors
impl UnwindSafe for IKeylessDeployErrors
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