pub struct DepositDestinationTarget(pub DepositDestinationTargetAccount);Expand description
The intended target for deposited funds.
JSON schema
{
"description": "The intended target for deposited funds.",
"oneOf": [
{
"$ref": "#/components/schemas/DepositDestinationTargetAccount"
}
]
}Tuple Fields§
§0: DepositDestinationTargetAccountTrait Implementations§
Source§impl Clone for DepositDestinationTarget
impl Clone for DepositDestinationTarget
Source§fn clone(&self) -> DepositDestinationTarget
fn clone(&self) -> DepositDestinationTarget
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 DepositDestinationTarget
impl Debug for DepositDestinationTarget
Source§impl Deref for DepositDestinationTarget
impl Deref for DepositDestinationTarget
Source§type Target = DepositDestinationTargetAccount
type Target = DepositDestinationTargetAccount
The resulting type after dereferencing.
Source§fn deref(&self) -> &DepositDestinationTargetAccount
fn deref(&self) -> &DepositDestinationTargetAccount
Dereferences the value.
Source§impl<'de> Deserialize<'de> for DepositDestinationTarget
impl<'de> Deserialize<'de> for DepositDestinationTarget
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<&DepositDestinationTarget> for DepositDestinationTarget
impl From<&DepositDestinationTarget> for DepositDestinationTarget
Source§fn from(value: &DepositDestinationTarget) -> Self
fn from(value: &DepositDestinationTarget) -> Self
Converts to this type from the input type.
Source§impl From<DepositDestinationTarget> for DepositDestinationTargetAccount
impl From<DepositDestinationTarget> for DepositDestinationTargetAccount
Source§fn from(value: DepositDestinationTarget) -> Self
fn from(value: DepositDestinationTarget) -> Self
Converts to this type from the input type.
Source§impl From<DepositDestinationTargetAccount> for DepositDestinationTarget
impl From<DepositDestinationTargetAccount> for DepositDestinationTarget
Source§fn from(value: DepositDestinationTargetAccount) -> Self
fn from(value: DepositDestinationTargetAccount) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DepositDestinationTarget
impl RefUnwindSafe for DepositDestinationTarget
impl Send for DepositDestinationTarget
impl Sync for DepositDestinationTarget
impl Unpin for DepositDestinationTarget
impl UnsafeUnpin for DepositDestinationTarget
impl UnwindSafe for DepositDestinationTarget
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