pub enum FeeEstimateMode {
Unset,
Economical,
Conservative,
}Expand description
Arg for the estimatesmartfee method.
Variants§
Unset
Use default settings based on other criteria
Economical
Force estimatesmartfee to use non-conservative estimates
Conservative
Force estimatesmartfee to use conservative estimates
Trait Implementations§
Source§impl Clone for FeeEstimateMode
impl Clone for FeeEstimateMode
Source§fn clone(&self) -> FeeEstimateMode
fn clone(&self) -> FeeEstimateMode
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 FeeEstimateMode
impl Debug for FeeEstimateMode
Source§impl<'de> Deserialize<'de> for FeeEstimateMode
impl<'de> Deserialize<'de> for FeeEstimateMode
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 FeeEstimateMode
impl Serialize for FeeEstimateMode
impl Copy for FeeEstimateMode
Auto Trait Implementations§
impl Freeze for FeeEstimateMode
impl RefUnwindSafe for FeeEstimateMode
impl Send for FeeEstimateMode
impl Sync for FeeEstimateMode
impl Unpin for FeeEstimateMode
impl UnsafeUnpin for FeeEstimateMode
impl UnwindSafe for FeeEstimateMode
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