pub enum IMegaAccessControlErrors {
NotIntercepted(NotIntercepted),
NonZeroTransfer(NonZeroTransfer),
VolatileDataAccessDisabled(VolatileDataAccessDisabled),
DisabledByParent(DisabledByParent),
}Expand description
Container for all the IMegaAccessControl custom errors.
Variants§
NotIntercepted(NotIntercepted)
NonZeroTransfer(NonZeroTransfer)
VolatileDataAccessDisabled(VolatileDataAccessDisabled)
DisabledByParent(DisabledByParent)
Implementations§
Source§impl IMegaAccessControlErrors
impl IMegaAccessControlErrors
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 IMegaAccessControlErrors
impl Clone for IMegaAccessControlErrors
Source§fn clone(&self) -> IMegaAccessControlErrors
fn clone(&self) -> IMegaAccessControlErrors
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 Debug for IMegaAccessControlErrors
impl Debug for IMegaAccessControlErrors
impl Eq for IMegaAccessControlErrors
Source§impl Hash for IMegaAccessControlErrors
impl Hash for IMegaAccessControlErrors
Source§impl PartialEq for IMegaAccessControlErrors
impl PartialEq for IMegaAccessControlErrors
Source§fn eq(&self, other: &IMegaAccessControlErrors) -> bool
fn eq(&self, other: &IMegaAccessControlErrors) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl SolInterface for IMegaAccessControlErrors
impl SolInterface for IMegaAccessControlErrors
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.
impl StructuralPartialEq for IMegaAccessControlErrors
Auto Trait Implementations§
impl Freeze for IMegaAccessControlErrors
impl RefUnwindSafe for IMegaAccessControlErrors
impl Send for IMegaAccessControlErrors
impl Sync for IMegaAccessControlErrors
impl Unpin for IMegaAccessControlErrors
impl UnsafeUnpin for IMegaAccessControlErrors
impl UnwindSafe for IMegaAccessControlErrors
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