pub enum TransactionVolume {
TenK,
HundredK,
OneM,
TenM,
HundredM,
Custom(u64),
}Expand description
Transaction volume presets.
Variants§
TenK
10,000 transactions per year
HundredK
100,000 transactions per year
OneM
1,000,000 transactions per year
TenM
10,000,000 transactions per year
HundredM
100,000,000 transactions per year
Custom(u64)
Custom count
Implementations§
Trait Implementations§
Source§impl Clone for TransactionVolume
impl Clone for TransactionVolume
Source§fn clone(&self) -> TransactionVolume
fn clone(&self) -> TransactionVolume
Returns a duplicate 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 Debug for TransactionVolume
impl Debug for TransactionVolume
Source§impl<'de> Deserialize<'de> for TransactionVolume
impl<'de> Deserialize<'de> for TransactionVolume
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for TransactionVolume
impl Serialize for TransactionVolume
impl Copy for TransactionVolume
Auto Trait Implementations§
impl Freeze for TransactionVolume
impl RefUnwindSafe for TransactionVolume
impl Send for TransactionVolume
impl Sync for TransactionVolume
impl Unpin for TransactionVolume
impl UnwindSafe for TransactionVolume
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