#[non_exhaustive]pub enum FieldType {
String,
ConcealedString,
Email,
Number,
Boolean,
Date,
YearMonth,
WifiNetworkSecurityType,
SubdivisionCode,
CountryCode,
Unknown(String),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
String
A UTF-8 encoded string value which is unconcealed and does not have a specified format.
ConcealedString
A UTF-8 encoded string value which should be considered secret and not displayed unless the user explicitly requests it.
A UTF-8 encoded string value which follows the format specified in RFC5322. This field SHOULD be unconcealed.
Number
A stringified numeric value which is unconcealed.
Boolean
A boolean value which is unconcealed. It MUST be of the values “true” or “false”.
Date
A string value representing a calendar date which follows the format specified in RFC3339.
YearMonth
A string value representing a calendar date which follows the date-fullyear “-” date-month
pattern as established in RFC3339 Appendix A.
This is equivalent to the YYYY-MM format specified in ISO8601.
WifiNetworkSecurityType
A string value representing a value that SHOULD be a member of WIFINetworkSecurityType.
SubdivisionCode
A string value which MUST follow the ISO3166-1 alpha-2 format.
CountryCode
A string which MUST follow the ISO3166-2 format.