pub trait GetChatSetters: HasPayload<Payload = GetChat> + Sized {
    // Provided method
    fn chat_id<T>(self, value: T) -> Self
       where T: Into<Recipient> { ... }
}
Expand description

Setters for fields of GetChat

Provided Methods§

source

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

Setter for chat_id field.

Implementors§

source§

impl<P> GetChatSetters for Pwhere P: HasPayload<Payload = GetChat>,