pub struct ChainalysisAddressIdentification {
pub address_name: String,
pub category_id: i64,
pub description: String,
}Expand description
ChainalysisAddressIdentification
JSON schema
{
"type": "object",
"required": [
"addressName",
"categoryId",
"description"
],
"properties": {
"addressName": {
"description": "DTO.KYT.CHAINALYSIS_ADDRESS_IDENTIFICATION.ADDRESS_NAME",
"examples": [
"SANCTIONS: OFAC SDN: Xiaobing Yan"
],
"type": "string"
},
"categoryId": {
"description": "DTO.KYT.CHAINALYSIS_ADDRESS_IDENTIFICATION.CATEGORY_ID",
"examples": [
3
],
"type": "integer",
"format": "int64"
},
"description": {
"description": "DTO.KYT.CHAINALYSIS_ADDRESS_IDENTIFICATION.DESCRIPTION",
"examples": [
"This specific address 12QtD5BFwRsdNsAZY76UVE1xyCGNTojH9h within the cluster has been identified..."
],
"type": "string"
}
}
}Fields§
§address_name: StringDTO.KYT.CHAINALYSIS_ADDRESS_IDENTIFICATION.ADDRESS_NAME
category_id: i64DTO.KYT.CHAINALYSIS_ADDRESS_IDENTIFICATION.CATEGORY_ID
description: StringDTO.KYT.CHAINALYSIS_ADDRESS_IDENTIFICATION.DESCRIPTION
Implementations§
Trait Implementations§
Source§impl Clone for ChainalysisAddressIdentification
impl Clone for ChainalysisAddressIdentification
Source§fn clone(&self) -> ChainalysisAddressIdentification
fn clone(&self) -> ChainalysisAddressIdentification
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for ChainalysisAddressIdentification
impl<'de> Deserialize<'de> for ChainalysisAddressIdentification
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<&ChainalysisAddressIdentification> for ChainalysisAddressIdentification
impl From<&ChainalysisAddressIdentification> for ChainalysisAddressIdentification
Source§fn from(value: &ChainalysisAddressIdentification) -> Self
fn from(value: &ChainalysisAddressIdentification) -> Self
Converts to this type from the input type.
Source§impl From<ChainalysisAddressIdentification> for ChainalysisAddressIdentification
impl From<ChainalysisAddressIdentification> for ChainalysisAddressIdentification
Source§fn from(value: ChainalysisAddressIdentification) -> Self
fn from(value: ChainalysisAddressIdentification) -> Self
Converts to this type from the input type.
Source§impl TryFrom<ChainalysisAddressIdentification> for ChainalysisAddressIdentification
impl TryFrom<ChainalysisAddressIdentification> for ChainalysisAddressIdentification
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: ChainalysisAddressIdentification,
) -> Result<Self, ConversionError>
fn try_from( value: ChainalysisAddressIdentification, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ChainalysisAddressIdentification
impl RefUnwindSafe for ChainalysisAddressIdentification
impl Send for ChainalysisAddressIdentification
impl Sync for ChainalysisAddressIdentification
impl Unpin for ChainalysisAddressIdentification
impl UnwindSafe for ChainalysisAddressIdentification
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