pub struct ConvertFee {
pub title: Option<String>,
pub description: Option<String>,
pub amount: ConvertAmount,
pub label: Option<String>,
}Expand description
Fee information for a conversion.
Fields§
§title: Option<String>Fee title.
description: Option<String>Fee description.
amount: ConvertAmountFee amount.
label: Option<String>Fee label.
Trait Implementations§
Source§impl Clone for ConvertFee
impl Clone for ConvertFee
Source§fn clone(&self) -> ConvertFee
fn clone(&self) -> ConvertFee
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 ConvertFee
impl Debug for ConvertFee
Source§impl<'de> Deserialize<'de> for ConvertFee
impl<'de> Deserialize<'de> for ConvertFee
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
Auto Trait Implementations§
impl Freeze for ConvertFee
impl RefUnwindSafe for ConvertFee
impl Send for ConvertFee
impl Sync for ConvertFee
impl Unpin for ConvertFee
impl UnwindSafe for ConvertFee
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