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

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