[][src]Struct tgbot::methods::SendPoll

pub struct SendPoll { /* fields omitted */ }

Use this method to send a native poll

A native poll can't be sent to a private chat On success, the sent Message is returned

Methods

impl SendPoll[src]

pub fn new<C, Q>(chat_id: C, question: Q) -> Self where
    C: Into<ChatId>,
    Q: Into<String>, 
[src]

Creates a new SendPoll

Arguments

  • chat_id - Unique identifier for the target chat
  • question - Poll question, 1-255 characters

pub fn option<O>(self, option: O) -> Self where
    O: Into<String>, 
[src]

Adds an answer option (1-100 characters)

pub fn disable_notification(self, disable_notification: bool) -> Self[src]

Sends the message silently

Users will receive a notification with no sound

pub fn reply_to_message_id(self, reply_to_message_id: Integer) -> Self[src]

If the message is a reply, ID of the original message

pub fn reply_markup<R>(self, reply_markup: R) -> Self where
    R: Into<ReplyMarkup>, 
[src]

Additional interface options

Trait Implementations

impl Clone for SendPoll[src]

impl Debug for SendPoll[src]

impl Method for SendPoll[src]

type Response = Message

Type of successful result in API response

impl Serialize for SendPoll[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.