pub trait SetChatAdministratorCustomTitleSetters: HasPayload<Payload = SetChatAdministratorCustomTitle> + Sized {
// Provided methods
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§
sourcefn custom_title<T>(self, value: T) -> Selfwhere
T: Into<String>,
fn custom_title<T>(self, value: T) -> Selfwhere T: Into<String>,
Setter for custom_title
field.