pub struct QueryTransferStatusResponse {
pub transfer_id: Option<String>,
pub direction: Option<String>,
pub status: Option<String>,
pub from_token: Option<String>,
pub from_token_amount: Option<String>,
pub to_token: Option<String>,
pub to_token_amount: Option<String>,
pub error_code: Option<Option<String>>,
pub error_message: Option<Option<String>>,
pub create_time: Option<String>,
pub update_time: Option<String>,
}Fields§
§transfer_id: Option<String>§direction: Option<String>§status: Option<String>§from_token: Option<String>§from_token_amount: Option<String>§to_token: Option<String>§to_token_amount: Option<String>§error_code: Option<Option<String>>§error_message: Option<Option<String>>§create_time: Option<String>§update_time: Option<String>Implementations§
Source§impl QueryTransferStatusResponse
impl QueryTransferStatusResponse
pub fn new() -> QueryTransferStatusResponse
Trait Implementations§
Source§impl Clone for QueryTransferStatusResponse
impl Clone for QueryTransferStatusResponse
Source§fn clone(&self) -> QueryTransferStatusResponse
fn clone(&self) -> QueryTransferStatusResponse
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 QueryTransferStatusResponse
impl Debug for QueryTransferStatusResponse
Source§impl Default for QueryTransferStatusResponse
impl Default for QueryTransferStatusResponse
Source§fn default() -> QueryTransferStatusResponse
fn default() -> QueryTransferStatusResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QueryTransferStatusResponse
impl<'de> Deserialize<'de> for QueryTransferStatusResponse
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 QueryTransferStatusResponse
impl PartialEq for QueryTransferStatusResponse
Source§fn eq(&self, other: &QueryTransferStatusResponse) -> bool
fn eq(&self, other: &QueryTransferStatusResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for QueryTransferStatusResponse
Auto Trait Implementations§
impl Freeze for QueryTransferStatusResponse
impl RefUnwindSafe for QueryTransferStatusResponse
impl Send for QueryTransferStatusResponse
impl Sync for QueryTransferStatusResponse
impl Unpin for QueryTransferStatusResponse
impl UnsafeUnpin for QueryTransferStatusResponse
impl UnwindSafe for QueryTransferStatusResponse
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