pub struct CreateKrakenUserBodyTaxIdsItem {
pub id: String,
pub issuing_country: CreateKrakenUserBodyTaxIdsItemIssuingCountry,
}Expand description
CreateKrakenUserBodyTaxIdsItem
JSON schema
{
"type": "object",
"required": [
"id",
"issuing_country"
],
"properties": {
"id": {
"type": "string"
},
"issuing_country": {
"type": "string",
"enum": [
"0C",
"AC",
"AD",
"AE",
"AF",
"AG",
"AI",
"AL",
"AM",
"AN",
"AO",
"AP",
"AQ",
"AR",
"AS",
"AT",
"AU",
"AW",
"AX",
"AZ",
"BA",
"BB",
"BD",
"BE",
"BF",
"BG",
"BH",
"BI",
"BJ",
"BL",
"BM",
"BN",
"BO",
"BQ",
"BR",
"BS",
"BT",
"BV",
"BW",
"BY",
"BZ",
"CA",
"CC",
"CD",
"CF",
"CG",
"CH",
"CI",
"CK",
"CL",
"CM",
"CN",
"CO",
"CP",
"CR",
"CU",
"CV",
"CW",
"CX",
"CY",
"CZ",
"DE",
"DG",
"DJ",
"DK",
"DM",
"DO",
"DZ",
"EA",
"EC",
"EE",
"EG",
"EH",
"ER",
"ES",
"ET",
"EU",
"FI",
"FJ",
"FK",
"FM",
"FO",
"FR",
"GA",
"GB",
"GD",
"GE",
"GF",
"GG",
"GH",
"GI",
"GL",
"GM",
"GN",
"GP",
"GQ",
"GR",
"GS",
"GT",
"GU",
"GW",
"GY",
"HK",
"HM",
"HN",
"HR",
"HT",
"HU",
"IC",
"ID",
"IE",
"IL",
"IM",
"IN",
"IO",
"IQ",
"IR",
"IS",
"IT",
"JE",
"JM",
"JO",
"JP",
"JX",
"KE",
"KG",
"KH",
"KI",
"KM",
"KN",
"KP",
"KR",
"KW",
"KY",
"KZ",
"LA",
"LB",
"LC",
"LI",
"LK",
"LR",
"LS",
"LT",
"LU",
"LV",
"LY",
"MA",
"MC",
"MD",
"ME",
"MF",
"MG",
"MH",
"MK",
"ML",
"MM",
"MN",
"MO",
"MP",
"MQ",
"MR",
"MS",
"MT",
"MU",
"MV",
"MW",
"MX",
"MY",
"MZ",
"NA",
"NC",
"NE",
"NF",
"NG",
"NI",
"NL",
"NO",
"NP",
"NR",
"NU",
"NZ",
"OM",
"PA",
"PE",
"PF",
"PG",
"PH",
"PK",
"PL",
"PM",
"PN",
"PR",
"PS",
"PT",
"PW",
"PY",
"QA",
"QO",
"RE",
"RO",
"RS",
"RU",
"RW",
"SA",
"SB",
"SC",
"SD",
"SE",
"SG",
"SH",
"SI",
"SJ",
"SK",
"SL",
"SM",
"SN",
"SO",
"SR",
"SS",
"ST",
"SV",
"SX",
"SY",
"SZ",
"TA",
"TC",
"TD",
"TF",
"TG",
"TH",
"TJ",
"TK",
"TL",
"TM",
"TN",
"TO",
"TR",
"TT",
"TV",
"TW",
"TZ",
"UA",
"UG",
"UM",
"US",
"UY",
"UZ",
"VA",
"VC",
"VE",
"VG",
"VI",
"VN",
"VU",
"WF",
"WS",
"XK",
"YE",
"YT",
"ZA",
"ZM",
"ZW"
]
}
}
}Fields§
§id: String§issuing_country: CreateKrakenUserBodyTaxIdsItemIssuingCountryTrait Implementations§
Source§impl Clone for CreateKrakenUserBodyTaxIdsItem
impl Clone for CreateKrakenUserBodyTaxIdsItem
Source§fn clone(&self) -> CreateKrakenUserBodyTaxIdsItem
fn clone(&self) -> CreateKrakenUserBodyTaxIdsItem
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 CreateKrakenUserBodyTaxIdsItem
impl<'de> Deserialize<'de> for CreateKrakenUserBodyTaxIdsItem
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<&CreateKrakenUserBodyTaxIdsItem> for CreateKrakenUserBodyTaxIdsItem
impl From<&CreateKrakenUserBodyTaxIdsItem> for CreateKrakenUserBodyTaxIdsItem
Source§fn from(value: &CreateKrakenUserBodyTaxIdsItem) -> Self
fn from(value: &CreateKrakenUserBodyTaxIdsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CreateKrakenUserBodyTaxIdsItem
impl RefUnwindSafe for CreateKrakenUserBodyTaxIdsItem
impl Send for CreateKrakenUserBodyTaxIdsItem
impl Sync for CreateKrakenUserBodyTaxIdsItem
impl Unpin for CreateKrakenUserBodyTaxIdsItem
impl UnsafeUnpin for CreateKrakenUserBodyTaxIdsItem
impl UnwindSafe for CreateKrakenUserBodyTaxIdsItem
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