Trait teloxide_core::payloads::SendChatActionSetters

source ·
pub trait SendChatActionSetters: HasPayload<Payload = SendChatAction> + Sized {
    // Provided methods
    fn chat_id<T>(self, value: T) -> Self
       where T: Into<Recipient> { ... }
    fn action(self, value: ChatAction) -> Self { ... }
    fn message_thread_id(self, value: ThreadId) -> Self { ... }
}
Expand description

Setters for fields of SendChatAction

Provided Methods§

source

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

Setter for chat_id field.

source

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

Setter for action field.

source

fn message_thread_id(self, value: ThreadId) -> Self

Setter for message_thread_id field.

Object Safety§

This trait is not object safe.

Implementors§

source§

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