Struct actix_telegram::types::PassportElementErrorDataField[][src]

pub struct PassportElementErrorDataField {
    pub source: String,
    pub type_: String,
    pub field_name: String,
    pub data_hash: String,
    pub message: String,
}

Represents an issue in one of the data fields that was provided by the user. The error is considered resolved when the field's value changes.

Fields

Error source, must be data

The section of the user's Telegram Passport which has the error, one of “personal_details”, “passport”, “driver_license”, “identity_card”, “internal_passport”, “address”

Name of the data field which has the error

Base64-encoded data hash

Error message

Trait Implementations

impl Debug for PassportElementErrorDataField
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations