Struct telexide::api::types::SendPoll[][src]

pub struct SendPoll {
Show fields pub chat_id: i64, pub question: String, pub options: Vec<String>, pub is_anonymous: Option<bool>, pub poll_type: Option<PollType>, pub allows_multiple_answers: bool, pub correct_option_id: Option<i64>, pub explanation: Option<String>, pub explanation_parse_mode: Option<ParseMode>, pub explanation_enitites: Option<Vec<MessageEntity>>, pub open_period: Option<i64>, pub close_date: Option<DateTime<Utc>>, pub is_closed: bool, pub disable_notification: bool, pub reply_to_message_id: Option<i64>, pub allow_sending_without_reply: bool, pub reply_markup: Option<ReplyMarkup>,
}

struct for holding data needed to call send_poll

Fields

chat_id: i64

Unique identifier for the target chat

question: String

Poll question, 1-255 characters

options: Vec<String>

A JSON-serialized list of answer options, 2-10 strings 1-300 characters each

is_anonymous: Option<bool>

True, if the poll needs to be anonymous, defaults to True

poll_type: Option<PollType>

Poll type, “quiz” or “regular”, defaults to “regular”

allows_multiple_answers: bool

True, if the poll allows multiple answers, ignored for polls in quiz mode

correct_option_id: Option<i64>

0-based identifier of the correct answer option, required for polls in quiz mode

explanation: Option<String>

Text that is shown when a user chooses an incorrect answer or taps on the lamp icon in a quiz-style poll, 0-200 characters with at most 2 line feeds after entities parsing

explanation_parse_mode: Option<ParseMode>

Mode for parsing entities in the explanation.

explanation_enitites: Option<Vec<MessageEntity>>

List of special entities that appear in the poll explanation, which can be specified instead of parse_mode

open_period: Option<i64>

Amount of time in seconds the poll will be active after creation, 5-600. Can’t be used together with close_date.

close_date: Option<DateTime<Utc>>

Point in time (Unix timestamp) when the poll will be automatically closed. Must be at least 5 and no more than 600 seconds in the future. Can’t be used together with open_period.

is_closed: bool

Pass True, if the poll needs to be immediately closed.

disable_notification: bool

Sends the message silently. Users will receive a notification with no sound.

reply_to_message_id: Option<i64>

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

allow_sending_without_reply: bool

Pass True, if the message should be sent even if the specified replied-to message is not found

reply_markup: Option<ReplyMarkup>

Additional interface options.

Trait Implementations

impl Clone for SendPoll[src]

impl Debug for SendPoll[src]

impl<'de> Deserialize<'de> for SendPoll[src]

impl PartialEq<SendPoll> for SendPoll[src]

impl Serialize for SendPoll[src]

impl StructuralPartialEq 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> CloneAny for T where
    T: Any + Clone
[src]

impl<T> DebugAny for T where
    T: Any + Debug
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.

impl<T> UnsafeAny for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,