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§
Sourcefn action(self, value: ChatAction) -> Self
fn action(self, value: ChatAction) -> Self
Setter for action
field.
Sourcefn message_thread_id(self, value: ThreadId) -> Self
fn message_thread_id(self, value: ThreadId) -> Self
Setter for message_thread_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.