pub enum GasPriceTier {
Zero,
Base,
VeryLow,
Low,
Mid,
High,
Ext,
Special,
}
Variants§
Zero
0 Zero
Base
2 Quick
VeryLow
3 Fastest
Low
5 Fast
Mid
8 Mid
High
10 Slow
Ext
20 Ext
Special
Multiparam or otherwise special
Implementations§
Trait Implementations§
source§impl Clone for GasPriceTier
impl Clone for GasPriceTier
source§fn clone(&self) -> GasPriceTier
fn clone(&self) -> GasPriceTier
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 PartialEq for GasPriceTier
impl PartialEq for GasPriceTier
source§fn eq(&self, other: &GasPriceTier) -> bool
fn eq(&self, other: &GasPriceTier) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for GasPriceTier
impl StructuralPartialEq for GasPriceTier
Auto Trait Implementations§
impl RefUnwindSafe for GasPriceTier
impl Send for GasPriceTier
impl Sync for GasPriceTier
impl Unpin for GasPriceTier
impl UnwindSafe for GasPriceTier
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