Trait teloxide_core::payloads::StopPollSetters
source · pub trait StopPollSetters: HasPayload<Payload = StopPoll> + Sized {
// Provided methods
fn chat_id<T>(self, value: T) -> Self
where T: Into<Recipient> { ... }
fn message_id(self, value: MessageId) -> Self { ... }
fn reply_markup(self, value: InlineKeyboardMarkup) -> Self { ... }
}
Expand description
Setters for fields of StopPoll
Provided Methods§
sourcefn message_id(self, value: MessageId) -> Self
fn message_id(self, value: MessageId) -> Self
Setter for message_id
field.
sourcefn reply_markup(self, value: InlineKeyboardMarkup) -> Self
fn reply_markup(self, value: InlineKeyboardMarkup) -> Self
Setter for reply_markup
field.