Struct telegram_typings::UserProfilePhotos [] [src]

pub struct UserProfilePhotos {
    pub total_count: i64,
    pub photos: Vec<Vec<Box<PhotoSize>>>,
}

This object represent a user's profile pictures.

Fields

Total number of profile pictures the target user has

Requested profile pictures (in up to 4 sizes each)

Trait Implementations

impl Debug for UserProfilePhotos
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UserProfilePhotos
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations