pub struct DepositTravelRuleVasp {
pub identifier: Option<String>,
pub name: Option<String>,
}Expand description
Information about the Virtual Asset Service Provider (VASP) for a deposit travel rule submission.
JSON schema
{
"description": "Information about the Virtual Asset Service Provider (VASP) for a deposit travel rule submission.",
"examples": [
{
"identifier": "5493001KJTIIGC8Y1R17",
"name": "Fidelity Digital Asset Services, LLC"
}
],
"type": "object",
"properties": {
"identifier": {
"description": "The Legal Entity Identifier (LEI) of the Virtual Asset Service Provider (VASP).",
"examples": [
"5493001KJTIIGC8Y1R17"
],
"type": "string"
},
"name": {
"description": "The name of the Virtual Asset Service Provider (VASP).",
"examples": [
"Fidelity Digital Asset Services, LLC"
],
"type": "string"
}
}
}Fields§
§identifier: Option<String>The Legal Entity Identifier (LEI) of the Virtual Asset Service Provider (VASP).
name: Option<String>The name of the Virtual Asset Service Provider (VASP).
Implementations§
Source§impl DepositTravelRuleVasp
impl DepositTravelRuleVasp
pub fn builder() -> DepositTravelRuleVasp
Trait Implementations§
Source§impl Clone for DepositTravelRuleVasp
impl Clone for DepositTravelRuleVasp
Source§fn clone(&self) -> DepositTravelRuleVasp
fn clone(&self) -> DepositTravelRuleVasp
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 DepositTravelRuleVasp
impl Debug for DepositTravelRuleVasp
Source§impl Default for DepositTravelRuleVasp
impl Default for DepositTravelRuleVasp
Source§impl<'de> Deserialize<'de> for DepositTravelRuleVasp
impl<'de> Deserialize<'de> for DepositTravelRuleVasp
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<&DepositTravelRuleVasp> for DepositTravelRuleVasp
impl From<&DepositTravelRuleVasp> for DepositTravelRuleVasp
Source§fn from(value: &DepositTravelRuleVasp) -> Self
fn from(value: &DepositTravelRuleVasp) -> Self
Converts to this type from the input type.
Source§impl From<DepositTravelRuleVasp> for DepositTravelRuleVasp
impl From<DepositTravelRuleVasp> for DepositTravelRuleVasp
Source§fn from(value: DepositTravelRuleVasp) -> Self
fn from(value: DepositTravelRuleVasp) -> Self
Converts to this type from the input type.
Source§impl Serialize for DepositTravelRuleVasp
impl Serialize for DepositTravelRuleVasp
Source§impl TryFrom<DepositTravelRuleVasp> for DepositTravelRuleVasp
impl TryFrom<DepositTravelRuleVasp> for DepositTravelRuleVasp
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: DepositTravelRuleVasp) -> Result<Self, ConversionError>
fn try_from(value: DepositTravelRuleVasp) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for DepositTravelRuleVasp
impl RefUnwindSafe for DepositTravelRuleVasp
impl Send for DepositTravelRuleVasp
impl Sync for DepositTravelRuleVasp
impl Unpin for DepositTravelRuleVasp
impl UnsafeUnpin for DepositTravelRuleVasp
impl UnwindSafe for DepositTravelRuleVasp
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