pub struct EstimateSmartFee {
pub feerate: Option<Json>,
pub errors: Option<Vec<String>>,
pub blocks: i64,
}
Expand description
Models the result of “estimatesmartfee”
Fields§
§feerate: Option<Json>
Estimate fee rate in BTC/kB.
errors: Option<Vec<String>>
Errors encountered during processing.
blocks: i64
Block number where estimate was found.
Trait Implementations§
Source§impl Clone for EstimateSmartFee
impl Clone for EstimateSmartFee
Source§fn clone(&self) -> EstimateSmartFee
fn clone(&self) -> EstimateSmartFee
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 Debug for EstimateSmartFee
impl Debug for EstimateSmartFee
Source§impl<'de> Deserialize<'de> for EstimateSmartFee
impl<'de> Deserialize<'de> for EstimateSmartFee
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<EstimateSmartFee, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EstimateSmartFee, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for EstimateSmartFee
impl Serialize for EstimateSmartFee
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for EstimateSmartFee
impl RefUnwindSafe for EstimateSmartFee
impl Send for EstimateSmartFee
impl Sync for EstimateSmartFee
impl Unpin for EstimateSmartFee
impl UnwindSafe for EstimateSmartFee
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