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: i32) -> Self { ... }
}
Expand description
Setters for fields of SendChatAction
Provided Methods§
sourcefn action(self, value: ChatAction) -> Self
fn action(self, value: ChatAction) -> Self
Setter for action
field.
sourcefn message_thread_id(self, value: i32) -> Self
fn message_thread_id(self, value: i32) -> Self
Setter for message_thread_id
field.