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) -> Self
fn custom_title<T>(self, value: T) -> Self
Setter for custom_title
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.