Struct actix_telegram::methods::GetUserProfilePhotos[][src]

pub struct GetUserProfilePhotos {
    pub user_id: Integer,
    pub offset: Option<Integer>,
    pub limit: Option<Integer>,
}

Use this method to get a list of profile pictures for a user. Returns a UserProfilePhotos object.

Fields

Unique identifier of the target user

Sequential number of the first photo to be returned. By default, all photos are returned.

Limits the number of photos to be retrieved. Values between 1—100 are accepted. Defaults to 100.

Trait Implementations

impl Debug for GetUserProfilePhotos
[src]

Formats the value using the given formatter. Read more

impl ActixMessage for GetUserProfilePhotos
[src]

The type of value that this message will resolved with if it is successful. Read more

impl Handler<GetUserProfilePhotos> for TelegramApi
[src]

The type of value that this handle will return

Method is called for every message received by this Actor

Auto Trait Implementations