Trait teloxide_core::payloads::SetStickerSetThumbSetters[][src]

pub trait SetStickerSetThumbSetters: HasPayload<Payload = SetStickerSetThumb> + Sized {
    fn name<T>(self, value: T) -> Self
    where
        T: Into<String>
, { ... }
fn user_id(self, value: i64) -> Self { ... }
fn thumb(self, value: InputFile) -> Self { ... } }

Setters for fields of SetStickerSetThumb

Provided methods

fn name<T>(self, value: T) -> Self where
    T: Into<String>, 
[src]

Setter for name field.

fn user_id(self, value: i64) -> Self[src]

Setter for user_id field.

fn thumb(self, value: InputFile) -> Self[src]

Setter for thumb field.

Loading content...

Implementors

impl<P> SetStickerSetThumbSetters for P where
    P: HasPayload<Payload = SetStickerSetThumb>, 
[src]

Loading content...