[][src]Enum tbot::types::keyboard::Any

pub enum Any<'a> {
    Inline(Keyboard<'a>),
    Reply(Keyboard<'a>),
    RemoveReply(Remove),
    ForceReply(ForceReply),
}

An enum of possible keyboards.

Variants

Inline(Keyboard<'a>)

An inline keyboard.

Reply(Keyboard<'a>)

A reply markup.

RemoveReply(Remove)

Removes reply markup.

ForceReply(ForceReply)

Forces reply.

Methods

impl<'_> Any<'_>[src]

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

Checks if self is Inline.

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

Checks if self is Reply.

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

Checks if self is RemoveReply.

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

Checks if self is ForceReply.

Trait Implementations

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

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

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

impl<'a> From<Keyboard<'a>> for Any<'a>[src]

impl<'a> From<&'a [&'a [Button<'a>]]> for Any<'a>[src]

impl<'a> From<Keyboard<'a>> for Any<'a>[src]

impl<'a> From<&'a [&'a [Button<'a>]]> for Any<'a>[src]

impl<'a> From<Remove> for Any<'a>[src]

impl<'a> From<ForceReply> for Any<'a>[src]

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

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

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

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

Auto Trait Implementations

impl<'a> Send for Any<'a>

impl<'a> Unpin for Any<'a>

impl<'a> Sync for Any<'a>

impl<'a> UnwindSafe for Any<'a>

impl<'a> RefUnwindSafe for Any<'a>

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T