pub trait UnpinChatMessageSetters: HasPayload<Payload = UnpinChatMessage> + Sized {
    fn chat_id<T>(self, value: T) -> Self
    where
        T: Into<Recipient>
, { ... } fn message_id(self, value: MessageId) -> Self { ... } }
Expand description

Setters for fields of UnpinChatMessage

Provided Methods§

Setter for chat_id field.

Setter for message_id field.

Implementors§