[][src]Enum tbot::types::parameters::ChatId

#[non_exhaustive]#[must_use]pub enum ChatId<'a> {
    Id(Id),
    Username(&'a str),
}

Represents possible ways to specify the destination chat.

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.
Id(Id)

The ID of a chat.

Username(&'a str)

The @username of a chat.

Implementations

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

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

Returns true if self is of variant Id.

pub fn expect_id(self) -> Id where
    Self: Debug
[src]

Unwraps the value, yielding the content of Id.

Panics

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

pub fn id(self) -> Option<Id>[src]

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

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

Returns true if self is of variant Username.

pub fn expect_username(self) -> &'a str where
    Self: Debug
[src]

Unwraps the value, yielding the content of Username.

Panics

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

pub fn username(self) -> Option<&'a str>[src]

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

Trait Implementations

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

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

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

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

impl<'a> From<&'a str> for ChatId<'a>[src]

impl<'a> From<Id> for ChatId<'a>[src]

impl<'a> From<Id> for ChatId<'a>[src]

impl<'a> From<i64> for ChatId<'a>[src]

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

impl<'a> ImplicitChatId<'a> for ChatId<'a>[src]

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for ChatId<'a>

impl<'a> Send for ChatId<'a>

impl<'a> Sync for ChatId<'a>

impl<'a> Unpin for ChatId<'a>

impl<'a> UnwindSafe for ChatId<'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]