pub struct EstimatedFeeDetails {
pub low: Option<FeeBreakdown>,
pub medium: Option<FeeBreakdown>,
pub high: Option<FeeBreakdown>,
}Expand description
EstimatedFeeDetails : Optional detailed fee breakdown for high/medium/low estimates
Fields§
§low: Option<FeeBreakdown>§medium: Option<FeeBreakdown>§high: Option<FeeBreakdown>Implementations§
Source§impl EstimatedFeeDetails
impl EstimatedFeeDetails
Sourcepub fn new() -> EstimatedFeeDetails
pub fn new() -> EstimatedFeeDetails
Optional detailed fee breakdown for high/medium/low estimates
Trait Implementations§
Source§impl Clone for EstimatedFeeDetails
impl Clone for EstimatedFeeDetails
Source§fn clone(&self) -> EstimatedFeeDetails
fn clone(&self) -> EstimatedFeeDetails
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 EstimatedFeeDetails
impl Debug for EstimatedFeeDetails
Source§impl Default for EstimatedFeeDetails
impl Default for EstimatedFeeDetails
Source§fn default() -> EstimatedFeeDetails
fn default() -> EstimatedFeeDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EstimatedFeeDetails
impl<'de> Deserialize<'de> for EstimatedFeeDetails
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 PartialEq for EstimatedFeeDetails
impl PartialEq for EstimatedFeeDetails
Source§impl Serialize for EstimatedFeeDetails
impl Serialize for EstimatedFeeDetails
impl StructuralPartialEq for EstimatedFeeDetails
Auto Trait Implementations§
impl Freeze for EstimatedFeeDetails
impl RefUnwindSafe for EstimatedFeeDetails
impl Send for EstimatedFeeDetails
impl Sync for EstimatedFeeDetails
impl Unpin for EstimatedFeeDetails
impl UnwindSafe for EstimatedFeeDetails
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