pub struct PaymentV2 {
pub hash: String,
pub fee: u64,
pub nonce: u64,
pub payer: String,
pub payments: Vec<PaymentV2Payment>,
}
Fields§
§hash: String
§fee: u64
Fee is in datacredits
nonce: u64
§payer: String
§payments: Vec<PaymentV2Payment>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PaymentV2
impl<'de> Deserialize<'de> for PaymentV2
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 PaymentV2
impl RefUnwindSafe for PaymentV2
impl Send for PaymentV2
impl Sync for PaymentV2
impl Unpin for PaymentV2
impl UnwindSafe for PaymentV2
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