pub enum IStoragePriceOracleCalls {
PRICE_UPDATER_ROLE(PRICE_UPDATER_ROLECall),
postageStamp(postageStampCall),
currentPrice(currentPriceCall),
minimumPrice(minimumPriceCall),
currentRound(currentRoundCall),
lastAdjustedRound(lastAdjustedRoundCall),
isPaused(isPausedCall),
setPrice(setPriceCall),
adjustPrice(adjustPriceCall),
pause(pauseCall),
unPause(unPauseCall),
}Expand description
Container for all the IStoragePriceOracle function calls.
Variants§
PRICE_UPDATER_ROLE(PRICE_UPDATER_ROLECall)
postageStamp(postageStampCall)
currentPrice(currentPriceCall)
minimumPrice(minimumPriceCall)
currentRound(currentRoundCall)
lastAdjustedRound(lastAdjustedRoundCall)
isPaused(isPausedCall)
setPrice(setPriceCall)
adjustPrice(adjustPriceCall)
pause(pauseCall)
unPause(unPauseCall)
Implementations§
Source§impl IStoragePriceOracleCalls
impl IStoragePriceOracleCalls
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 IStoragePriceOracleCalls
impl Clone for IStoragePriceOracleCalls
Source§fn clone(&self) -> IStoragePriceOracleCalls
fn clone(&self) -> IStoragePriceOracleCalls
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 IStoragePriceOracleCalls
impl Debug for IStoragePriceOracleCalls
impl Eq for IStoragePriceOracleCalls
Source§impl PartialEq for IStoragePriceOracleCalls
impl PartialEq for IStoragePriceOracleCalls
Source§fn eq(&self, other: &IStoragePriceOracleCalls) -> bool
fn eq(&self, other: &IStoragePriceOracleCalls) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl SolInterface for IStoragePriceOracleCalls
impl SolInterface for IStoragePriceOracleCalls
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 IStoragePriceOracleCalls
Auto Trait Implementations§
impl Freeze for IStoragePriceOracleCalls
impl RefUnwindSafe for IStoragePriceOracleCalls
impl Send for IStoragePriceOracleCalls
impl Sync for IStoragePriceOracleCalls
impl Unpin for IStoragePriceOracleCalls
impl UnsafeUnpin for IStoragePriceOracleCalls
impl UnwindSafe for IStoragePriceOracleCalls
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