pub struct Pair {
pub minimumAmount: String,
pub maximumAmount: String,
pub networkFee: String,
pub confirmations: i32,
pub processingTime: String,
}
Expand description
§Pair information.
minimumAmount
: Minimum amount that can be sentmaximumAmount
: Maximum amount that can be sentnetworkFee
: Network feeconfirmtions
: Number of confirmations requiredprocessingTime
: Processing time
Fields§
§minimumAmount: String
§maximumAmount: String
§networkFee: String
§confirmations: i32
§processingTime: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Pair
impl<'de> Deserialize<'de> for Pair
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 Pair
impl RefUnwindSafe for Pair
impl Send for Pair
impl Sync for Pair
impl Unpin for Pair
impl UnwindSafe for Pair
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