Trait SetChatTitleSetters

Source
pub trait SetChatTitleSetters: HasPayload<Payload = SetChatTitle> + Sized {
    // Provided methods
    fn chat_id<T>(self, value: T) -> Self
       where T: Into<Recipient> { ... }
    fn title<T>(self, value: T) -> Self
       where T: Into<String> { ... }
}
Expand description

Setters for fields of SetChatTitle

Provided Methods§

Source

fn chat_id<T>(self, value: T) -> Self
where T: Into<Recipient>,

Setter for chat_id field.

Source

fn title<T>(self, value: T) -> Self
where T: Into<String>,

Setter for 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.

Implementors§

Source§

impl<P> SetChatTitleSetters for P
where P: HasPayload<Payload = SetChatTitle>,