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