[][src]Struct tbot::types::poll::Poll

#[non_exhaustive]pub struct Poll {
    pub kind: Kind,
    pub id: String,
    pub question: String,
    pub options: Vec<Option>,
    pub total_voter_count: u64,
    pub is_closed: bool,
    pub is_anonymous: bool,
}

Represents a Poll.

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
kind: Kind

The kind of the poll.

id: String

The ID of the poll.

question: String

The question of the poll.

options: Vec<Option>

The options of the poll.

total_voter_count: u64

How many people voted in the poll.

is_closed: bool

true if the poll is closed.

is_anonymous: bool

true if the poll is anonymous.

Trait Implementations

impl Clone for Poll[src]

impl Debug for Poll[src]

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

impl Eq for Poll[src]

impl Hash for Poll[src]

impl PartialEq<Poll> for Poll[src]

impl StructuralEq for Poll[src]

impl StructuralPartialEq for Poll[src]

Auto Trait Implementations

impl RefUnwindSafe for Poll

impl Send for Poll

impl Sync for Poll

impl Unpin for Poll

impl UnwindSafe for Poll

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[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> WithSubscriber for T[src]