pub struct EstimateSmartFeeResult {
pub fee_rate: Option<Amount>,
pub errors: Option<Vec<String>>,
pub blocks: i64,
}
Expand description
Models the result of “estimatesmartfee”
Fields
fee_rate: Option<Amount>
Estimate fee rate in BTC/kB.
errors: Option<Vec<String>>
Errors encountered during processing.
blocks: i64
Block number where estimate was found.
Trait Implementations
sourceimpl Clone for EstimateSmartFeeResult
impl Clone for EstimateSmartFeeResult
sourcefn clone(&self) -> EstimateSmartFeeResult
fn clone(&self) -> EstimateSmartFeeResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for EstimateSmartFeeResult
impl Debug for EstimateSmartFeeResult
sourceimpl<'de> Deserialize<'de> for EstimateSmartFeeResult
impl<'de> Deserialize<'de> for EstimateSmartFeeResult
sourcefn 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
sourceimpl Serialize for EstimateSmartFeeResult
impl Serialize for EstimateSmartFeeResult
Auto Trait Implementations
impl RefUnwindSafe for EstimateSmartFeeResult
impl Send for EstimateSmartFeeResult
impl Sync for EstimateSmartFeeResult
impl Unpin for EstimateSmartFeeResult
impl UnwindSafe for EstimateSmartFeeResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more