pub trait SetChatPermissionsSetters: HasPayload<Payload = SetChatPermissions> + Sized {
    fn chat_id<T>(self, value: T) -> Self
    where
        T: Into<Recipient>
, { ... } fn permissions(self, value: ChatPermissions) -> Self { ... } }
Expand description

Setters for fields of SetChatPermissions

Provided Methods§

Setter for chat_id field.

Setter for permissions field.

Implementors§