Trait teloxide_core::payloads::SendChatActionSetters[][src]

pub trait SendChatActionSetters: HasPayload<Payload = SendChatAction> + Sized {
    fn chat_id<T>(self, value: T) -> Self
    where
        T: Into<ChatId>
, { ... }
fn action(self, value: ChatAction) -> Self { ... } }

Setters for fields of SendChatAction

Provided methods

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

Setter for chat_id field.

fn action(self, value: ChatAction) -> Self[src]

Setter for action field.

Loading content...

Implementors

impl<P> SendChatActionSetters for P where
    P: HasPayload<Payload = SendChatAction>, 
[src]

Loading content...