pub trait GetUserProfilePhotosSetters: HasPayload<Payload = GetUserProfilePhotos> + Sized {
    // Provided methods
    fn user_id(self, value: UserId) -> Self { ... }
    fn offset(self, value: u32) -> Self { ... }
    fn limit(self, value: u8) -> Self { ... }
}
Expand description

Setters for fields of GetUserProfilePhotos

Provided Methods§

source

fn user_id(self, value: UserId) -> Self

Setter for user_id field.

source

fn offset(self, value: u32) -> Self

Setter for offset field.

source

fn limit(self, value: u8) -> Self

Setter for limit field.

Implementors§