Trait 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§

Source

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

Setter for chat_id field.

Source

fn message_id(self, value: MessageId) -> Self

Setter for message_id field.

Source

fn reply_markup(self, value: InlineKeyboardMarkup) -> Self

Setter for reply_markup 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.

Implementors§

Source§

impl<P> StopPollSetters for P
where P: HasPayload<Payload = StopPoll>,