pub struct CreateDepositDestinationRequest(pub CreateCryptoDepositDestinationRequest);Expand description
Request to create a new deposit destination. Provide the type-specific details matching the chosen type.
JSON schema
{
"description": "Request to create a new deposit destination. Provide the type-specific details matching the chosen `type`.",
"oneOf": [
{
"$ref": "#/components/schemas/CreateCryptoDepositDestinationRequest"
}
]
}Tuple Fields§
§0: CreateCryptoDepositDestinationRequestTrait Implementations§
Source§impl Clone for CreateDepositDestinationRequest
impl Clone for CreateDepositDestinationRequest
Source§fn clone(&self) -> CreateDepositDestinationRequest
fn clone(&self) -> CreateDepositDestinationRequest
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 Deref for CreateDepositDestinationRequest
impl Deref for CreateDepositDestinationRequest
Source§type Target = CreateCryptoDepositDestinationRequest
type Target = CreateCryptoDepositDestinationRequest
The resulting type after dereferencing.
Source§fn deref(&self) -> &CreateCryptoDepositDestinationRequest
fn deref(&self) -> &CreateCryptoDepositDestinationRequest
Dereferences the value.
Source§impl<'de> Deserialize<'de> for CreateDepositDestinationRequest
impl<'de> Deserialize<'de> for CreateDepositDestinationRequest
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 From<&CreateDepositDestinationRequest> for CreateDepositDestinationRequest
impl From<&CreateDepositDestinationRequest> for CreateDepositDestinationRequest
Source§fn from(value: &CreateDepositDestinationRequest) -> Self
fn from(value: &CreateDepositDestinationRequest) -> Self
Converts to this type from the input type.
Source§impl From<CreateCryptoDepositDestinationRequest> for CreateDepositDestinationRequest
impl From<CreateCryptoDepositDestinationRequest> for CreateDepositDestinationRequest
Source§fn from(value: CreateCryptoDepositDestinationRequest) -> Self
fn from(value: CreateCryptoDepositDestinationRequest) -> Self
Converts to this type from the input type.
Source§impl From<CreateDepositDestinationRequest> for CreateCryptoDepositDestinationRequest
impl From<CreateDepositDestinationRequest> for CreateCryptoDepositDestinationRequest
Source§fn from(value: CreateDepositDestinationRequest) -> Self
fn from(value: CreateDepositDestinationRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CreateDepositDestinationRequest
impl RefUnwindSafe for CreateDepositDestinationRequest
impl Send for CreateDepositDestinationRequest
impl Sync for CreateDepositDestinationRequest
impl Unpin for CreateDepositDestinationRequest
impl UnsafeUnpin for CreateDepositDestinationRequest
impl UnwindSafe for CreateDepositDestinationRequest
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