Trait teloxide_core::payloads::LeaveChatSetters

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

Setters for fields of LeaveChat

Provided Methods§

source

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

Setter for chat_id field.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<P> LeaveChatSetters for P
where P: HasPayload<Payload = LeaveChat>,