Trait GetUserProfilePhotosSetters

Source
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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§