Trait teloxide_core::payloads::SetChatDescriptionSetters[][src]

pub trait SetChatDescriptionSetters: HasPayload<Payload = SetChatDescription> + Sized {
    fn chat_id<T>(self, value: T) -> Self
    where
        T: Into<ChatId>
, { ... }
fn description<T>(self, value: T) -> Self
    where
        T: Into<String>
, { ... } }

Setters for fields of SetChatDescription

Provided methods

fn chat_id<T>(self, value: T) -> Self where
    T: Into<ChatId>, 
[src]

Setter for chat_id field.

fn description<T>(self, value: T) -> Self where
    T: Into<String>, 
[src]

Setter for description field.

Loading content...

Implementors

impl<P> SetChatDescriptionSetters for P where
    P: HasPayload<Payload = SetChatDescription>, 
[src]

Loading content...