pub struct DepositTravelRuleBeneficiary {
pub name: Option<String>,
}Expand description
Beneficiary information for a deposit travel rule submission.
JSON schema
{
"description": "Beneficiary information for a deposit travel rule submission.",
"examples": [
{
"name": "Jane Smith"
}
],
"type": "object",
"properties": {
"name": {
"description": "Full name of the beneficiary.",
"examples": [
"Jane Smith"
],
"type": "string"
}
}
}Fields§
§name: Option<String>Full name of the beneficiary.
Implementations§
Trait Implementations§
Source§impl Clone for DepositTravelRuleBeneficiary
impl Clone for DepositTravelRuleBeneficiary
Source§fn clone(&self) -> DepositTravelRuleBeneficiary
fn clone(&self) -> DepositTravelRuleBeneficiary
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 DepositTravelRuleBeneficiary
impl Debug for DepositTravelRuleBeneficiary
Source§impl<'de> Deserialize<'de> for DepositTravelRuleBeneficiary
impl<'de> Deserialize<'de> for DepositTravelRuleBeneficiary
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<&DepositTravelRuleBeneficiary> for DepositTravelRuleBeneficiary
impl From<&DepositTravelRuleBeneficiary> for DepositTravelRuleBeneficiary
Source§fn from(value: &DepositTravelRuleBeneficiary) -> Self
fn from(value: &DepositTravelRuleBeneficiary) -> Self
Converts to this type from the input type.
Source§impl From<DepositTravelRuleBeneficiary> for DepositTravelRuleBeneficiary
impl From<DepositTravelRuleBeneficiary> for DepositTravelRuleBeneficiary
Source§fn from(value: DepositTravelRuleBeneficiary) -> Self
fn from(value: DepositTravelRuleBeneficiary) -> Self
Converts to this type from the input type.
Source§impl TryFrom<DepositTravelRuleBeneficiary> for DepositTravelRuleBeneficiary
impl TryFrom<DepositTravelRuleBeneficiary> for DepositTravelRuleBeneficiary
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: DepositTravelRuleBeneficiary,
) -> Result<Self, ConversionError>
fn try_from( value: DepositTravelRuleBeneficiary, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for DepositTravelRuleBeneficiary
impl RefUnwindSafe for DepositTravelRuleBeneficiary
impl Send for DepositTravelRuleBeneficiary
impl Sync for DepositTravelRuleBeneficiary
impl Unpin for DepositTravelRuleBeneficiary
impl UnsafeUnpin for DepositTravelRuleBeneficiary
impl UnwindSafe for DepositTravelRuleBeneficiary
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