[][src]Enum tbot::types::input_message_content::InputMessageContent

#[non_exhaustive]
pub enum InputMessageContent<'a> {
    Text(Text<'a>),
    Location(Location),
    Venue(Venue<'a>),
    Contact(Contact<'a>),
}

Represents InputMessageContext.

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Text(Text<'a>)

A text message.

Location(Location)

A location.

Venue(Venue<'a>)

A venue.

Contact(Contact<'a>)

A contact.

Methods

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

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

Returns true if self is of variant Text.

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

Unwraps the value, yielding the content of Text.

Panics

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

pub fn text(self) -> Option<Text<'a>>[src]

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

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

Returns true if self is of variant Location.

pub fn expect_location(self) -> Location where
    Self: Debug
[src]

Unwraps the value, yielding the content of Location.

Panics

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

pub fn location(self) -> Option<Location>[src]

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

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

Returns true if self is of variant Venue.

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

Unwraps the value, yielding the content of Venue.

Panics

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

pub fn venue(self) -> Option<Venue<'a>>[src]

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

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

Returns true if self is of variant Contact.

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

Unwraps the value, yielding the content of Contact.

Panics

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

pub fn contact(self) -> Option<Contact<'a>>[src]

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

Trait Implementations

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

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

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

impl<'a> From<Contact<'a>> for InputMessageContent<'a>[src]

impl<'a> From<Location> for InputMessageContent<'a>[src]

impl<'a> From<Text<'a>> for InputMessageContent<'a>[src]

impl<'a> From<Venue<'a>> for InputMessageContent<'a>[src]

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for InputMessageContent<'a>

impl<'a> Send for InputMessageContent<'a>

impl<'a> Sync for InputMessageContent<'a>

impl<'a> Unpin for InputMessageContent<'a>

impl<'a> UnwindSafe for InputMessageContent<'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<T> From<T> 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.