pub struct DepositDestinationReference {
pub id: DepositDestinationId,
}Expand description
A reference to the deposit destination associated with the transfer.
JSON schema
{
"description": "A reference to the deposit destination associated with the transfer.",
"examples": [
{
"id": "depositDestination_af2937b0-9846-4fe7-bfe9-ccc22d935114"
}
],
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"$ref": "#/components/schemas/DepositDestinationId"
}
}
}Fields§
§id: DepositDestinationIdImplementations§
Trait Implementations§
Source§impl Clone for DepositDestinationReference
impl Clone for DepositDestinationReference
Source§fn clone(&self) -> DepositDestinationReference
fn clone(&self) -> DepositDestinationReference
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 DepositDestinationReference
impl Debug for DepositDestinationReference
Source§impl<'de> Deserialize<'de> for DepositDestinationReference
impl<'de> Deserialize<'de> for DepositDestinationReference
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<&DepositDestinationReference> for DepositDestinationReference
impl From<&DepositDestinationReference> for DepositDestinationReference
Source§fn from(value: &DepositDestinationReference) -> Self
fn from(value: &DepositDestinationReference) -> Self
Converts to this type from the input type.
Source§impl From<DepositDestinationReference> for DepositDestinationReference
impl From<DepositDestinationReference> for DepositDestinationReference
Source§fn from(value: DepositDestinationReference) -> Self
fn from(value: DepositDestinationReference) -> Self
Converts to this type from the input type.
Source§impl TryFrom<DepositDestinationReference> for DepositDestinationReference
impl TryFrom<DepositDestinationReference> for DepositDestinationReference
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: DepositDestinationReference) -> Result<Self, ConversionError>
fn try_from(value: DepositDestinationReference) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for DepositDestinationReference
impl RefUnwindSafe for DepositDestinationReference
impl Send for DepositDestinationReference
impl Sync for DepositDestinationReference
impl Unpin for DepositDestinationReference
impl UnsafeUnpin for DepositDestinationReference
impl UnwindSafe for DepositDestinationReference
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