Trait 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.

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> LeaveChatSetters for P
where P: HasPayload<Payload = LeaveChat>,