pub struct DustTransferResponse {
pub total_service_charge: Option<String>,
pub total_transfered: Option<String>,
pub transfer_result: Option<Vec<DustTransferResponseTransferResultInner>>,
}Fields§
§total_service_charge: Option<String>§total_transfered: Option<String>§transfer_result: Option<Vec<DustTransferResponseTransferResultInner>>Implementations§
Source§impl DustTransferResponse
impl DustTransferResponse
pub fn new() -> DustTransferResponse
Trait Implementations§
Source§impl Clone for DustTransferResponse
impl Clone for DustTransferResponse
Source§fn clone(&self) -> DustTransferResponse
fn clone(&self) -> DustTransferResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DustTransferResponse
impl Debug for DustTransferResponse
Source§impl Default for DustTransferResponse
impl Default for DustTransferResponse
Source§fn default() -> DustTransferResponse
fn default() -> DustTransferResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DustTransferResponse
impl<'de> Deserialize<'de> for DustTransferResponse
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 DustTransferResponse
impl PartialEq for DustTransferResponse
Source§fn eq(&self, other: &DustTransferResponse) -> bool
fn eq(&self, other: &DustTransferResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DustTransferResponse
impl Serialize for DustTransferResponse
impl StructuralPartialEq for DustTransferResponse
Auto Trait Implementations§
impl Freeze for DustTransferResponse
impl RefUnwindSafe for DustTransferResponse
impl Send for DustTransferResponse
impl Sync for DustTransferResponse
impl Unpin for DustTransferResponse
impl UnsafeUnpin for DustTransferResponse
impl UnwindSafe for DustTransferResponse
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