pub enum KrakenEmbedStartAddressMetadataDocumentType {
Show 17 variants
BankStatement,
CreditCardStatement,
EmployerLetterOrWorkContract,
GovernmentIssuedDocument,
HomeOrRentalInsurance,
InternetOrCableBill,
MobilePhoneBill,
MortgageStatement,
OfficialGovernmentLetter,
Other,
PassportAddressPage,
RentalOrLeaseAgreement,
ResidenceCertificate,
SocialInsurancePaymentReceipt,
TaxReceipt,
TaxReturn,
UtilityBill,
}Expand description
KrakenEmbedStartAddressMetadataDocumentType
JSON schema
{
"type": "string",
"enum": [
"bank_statement",
"credit_card_statement",
"employer_letter_or_work_contract",
"government_issued_document",
"home_or_rental_insurance",
"internet_or_cable_bill",
"mobile_phone_bill",
"mortgage_statement",
"official_government_letter",
"other",
"passport_address_page",
"rental_or_lease_agreement",
"residence_certificate",
"social_insurance_payment_receipt",
"tax_receipt",
"tax_return",
"utility_bill"
]
}Variants§
BankStatement
CreditCardStatement
EmployerLetterOrWorkContract
GovernmentIssuedDocument
HomeOrRentalInsurance
InternetOrCableBill
MobilePhoneBill
MortgageStatement
OfficialGovernmentLetter
Other
PassportAddressPage
RentalOrLeaseAgreement
ResidenceCertificate
SocialInsurancePaymentReceipt
TaxReceipt
TaxReturn
UtilityBill
Trait Implementations§
Source§impl Clone for KrakenEmbedStartAddressMetadataDocumentType
impl Clone for KrakenEmbedStartAddressMetadataDocumentType
Source§fn clone(&self) -> KrakenEmbedStartAddressMetadataDocumentType
fn clone(&self) -> KrakenEmbedStartAddressMetadataDocumentType
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 moreimpl Copy for KrakenEmbedStartAddressMetadataDocumentType
Source§impl<'de> Deserialize<'de> for KrakenEmbedStartAddressMetadataDocumentType
impl<'de> Deserialize<'de> for KrakenEmbedStartAddressMetadataDocumentType
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
impl Eq for KrakenEmbedStartAddressMetadataDocumentType
Source§impl From<&KrakenEmbedStartAddressMetadataDocumentType> for KrakenEmbedStartAddressMetadataDocumentType
impl From<&KrakenEmbedStartAddressMetadataDocumentType> for KrakenEmbedStartAddressMetadataDocumentType
Source§fn from(value: &KrakenEmbedStartAddressMetadataDocumentType) -> Self
fn from(value: &KrakenEmbedStartAddressMetadataDocumentType) -> Self
Converts to this type from the input type.
Source§impl Ord for KrakenEmbedStartAddressMetadataDocumentType
impl Ord for KrakenEmbedStartAddressMetadataDocumentType
Source§fn cmp(&self, other: &KrakenEmbedStartAddressMetadataDocumentType) -> Ordering
fn cmp(&self, other: &KrakenEmbedStartAddressMetadataDocumentType) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for KrakenEmbedStartAddressMetadataDocumentType
impl PartialEq for KrakenEmbedStartAddressMetadataDocumentType
Source§fn eq(&self, other: &KrakenEmbedStartAddressMetadataDocumentType) -> bool
fn eq(&self, other: &KrakenEmbedStartAddressMetadataDocumentType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for KrakenEmbedStartAddressMetadataDocumentType
impl PartialOrd for KrakenEmbedStartAddressMetadataDocumentType
Source§fn partial_cmp(
&self,
other: &KrakenEmbedStartAddressMetadataDocumentType,
) -> Option<Ordering>
fn partial_cmp( &self, other: &KrakenEmbedStartAddressMetadataDocumentType, ) -> Option<Ordering>
impl StructuralPartialEq for KrakenEmbedStartAddressMetadataDocumentType
Source§impl TryFrom<&String> for KrakenEmbedStartAddressMetadataDocumentType
impl TryFrom<&String> for KrakenEmbedStartAddressMetadataDocumentType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for KrakenEmbedStartAddressMetadataDocumentType
impl TryFrom<&str> for KrakenEmbedStartAddressMetadataDocumentType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for KrakenEmbedStartAddressMetadataDocumentType
impl TryFrom<String> for KrakenEmbedStartAddressMetadataDocumentType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for KrakenEmbedStartAddressMetadataDocumentType
impl RefUnwindSafe for KrakenEmbedStartAddressMetadataDocumentType
impl Send for KrakenEmbedStartAddressMetadataDocumentType
impl Sync for KrakenEmbedStartAddressMetadataDocumentType
impl Unpin for KrakenEmbedStartAddressMetadataDocumentType
impl UnsafeUnpin for KrakenEmbedStartAddressMetadataDocumentType
impl UnwindSafe for KrakenEmbedStartAddressMetadataDocumentType
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