pub struct PrivateDepositAddressResponse {
pub address: String,
pub creation_timestamp: i64,
pub currency: Currency,
pub type: String,
}Fields§
§address: String§creation_timestamp: i64§currency: Currency§type: StringTrait Implementations§
Source§impl Clone for PrivateDepositAddressResponse
impl Clone for PrivateDepositAddressResponse
Source§fn clone(&self) -> PrivateDepositAddressResponse
fn clone(&self) -> PrivateDepositAddressResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for PrivateDepositAddressResponse
impl Default for PrivateDepositAddressResponse
Source§fn default() -> PrivateDepositAddressResponse
fn default() -> PrivateDepositAddressResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PrivateDepositAddressResponse
impl<'de> Deserialize<'de> for PrivateDepositAddressResponse
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 PrivateDepositAddressResponse
impl PartialEq for PrivateDepositAddressResponse
Source§fn eq(&self, other: &PrivateDepositAddressResponse) -> bool
fn eq(&self, other: &PrivateDepositAddressResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PrivateDepositAddressResponse
Auto Trait Implementations§
impl Freeze for PrivateDepositAddressResponse
impl RefUnwindSafe for PrivateDepositAddressResponse
impl Send for PrivateDepositAddressResponse
impl Sync for PrivateDepositAddressResponse
impl Unpin for PrivateDepositAddressResponse
impl UnwindSafe for PrivateDepositAddressResponse
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