pub trait SetChatAdministratorCustomTitleSetters: HasPayload<Payload = SetChatAdministratorCustomTitle> + Sized {
    fn chat_id<T>(self, value: T) -> Self
    where
        T: Into<Recipient>
, { ... } fn user_id(self, value: UserId) -> Self { ... } fn custom_title<T>(self, value: T) -> Self
    where
        T: Into<String>
, { ... } }
Expand description

Setters for fields of SetChatAdministratorCustomTitle

Provided Methods§

Setter for chat_id field.

Setter for user_id field.

Setter for custom_title field.

Implementors§