[][src]Struct tgbot::methods::SetPassportDataErrors

pub struct SetPassportDataErrors { /* fields omitted */ }

Informs a user that some of the Telegram Passport elements they provided contains errors

The user will not be able to re-submit their Passport to you until the errors are fixed (the contents of the field for which you returned the error must change)

Use this if the data submitted by the user doesn't satisfy the standards your service requires for any reason

For example, if a birthday date seems invalid, a submitted document is blurry, a scan shows evidence of tampering, etc.

Supply some details in the error message to make sure the user knows how to correct the issues

Methods

impl SetPassportDataErrors[src]

pub fn new(user_id: Integer, errors: Vec<PassportElementError>) -> Self[src]

Creates a new SetPassportDataErrors

Arguments

  • user_id - User identifier
  • errors - Array describing the errors

Trait Implementations

impl Clone for SetPassportDataErrors[src]

impl Debug for SetPassportDataErrors[src]

impl Method for SetPassportDataErrors[src]

type Response = bool

Type of successful result in API response

impl Serialize for SetPassportDataErrors[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.