[][src]Enum tbot::types::parameters::poll::Kind

pub enum Kind<'a> {
    Quiz(Quiz<'a>),
    Poll(Poll),
}

Represents either a quiz or a poll.

Variants

Quiz(Quiz<'a>)

Represents a quiz.

Poll(Poll)

Represents a poll.

Implementations

impl<'a> Kind<'a>[src]

pub fn is_quiz(&self) -> bool[src]

Returns true if self is of variant Quiz.

pub fn expect_quiz(self) -> Quiz<'a> where
    Self: Debug
[src]

Unwraps the value, yielding the content of Quiz.

Panics

Panics if the value is not Quiz, with a panic message including the content of self.

pub fn quiz(self) -> Option<Quiz<'a>>[src]

Returns Some if self is of variant Quiz, and None otherwise.

pub fn is_poll(&self) -> bool[src]

Returns true if self is of variant Poll.

pub fn expect_poll(self) -> Poll where
    Self: Debug
[src]

Unwraps the value, yielding the content of Poll.

Panics

Panics if the value is not Poll, with a panic message including the content of self.

pub fn poll(self) -> Option<Poll>[src]

Returns Some if self is of variant Poll, and None otherwise.

Trait Implementations

impl<'a> Clone for Kind<'a>[src]

impl<'a> Copy for Kind<'a>[src]

impl<'a> Debug for Kind<'a>[src]

impl<'a> Eq for Kind<'a>[src]

impl<'a> From<Poll> for Kind<'a>[src]

impl<'a> From<Quiz<'a>> for Kind<'a>[src]

impl<'a> Hash for Kind<'a>[src]

impl<'a> PartialEq<Kind<'a>> for Kind<'a>[src]

impl<'a> Serialize for Kind<'a>[src]

impl<'a> StructuralEq for Kind<'a>[src]

impl<'a> StructuralPartialEq for Kind<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Kind<'a>

impl<'a> Send for Kind<'a>

impl<'a> Sync for Kind<'a>

impl<'a> Unpin for Kind<'a>

impl<'a> UnwindSafe for Kind<'a>

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<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> 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]