[][src]Enum tbot::types::message::forward::From

#[non_exhaustive]pub enum From {
    User(User),
    HiddenUser(String),
    Channel {
        chat: Box<Chat>,
        message_id: Id,
        signature: Option<String>,
    },
}

Represents a forward source.

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

The forward is from a user.

HiddenUser(String)

The forward is from a user who decided to hide their profile.

Channel

The forward is from a channel.

Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.

Fields of Channel

chat: Box<Chat>

Information about the channel.

message_id: Id

The ID of the original message.

signature: Option<String>

The author's signature.

Implementations

impl From[src]

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

Returns true if self is of variant User.

pub fn expect_user(self) -> User where
    Self: Debug
[src]

Unwraps the value, yielding the content of User.

Panics

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

pub fn user(self) -> Option<User>[src]

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

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

Returns true if self is of variant HiddenUser.

pub fn expect_hidden_user(self) -> String where
    Self: Debug
[src]

Unwraps the value, yielding the content of HiddenUser.

Panics

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

pub fn hidden_user(self) -> Option<String>[src]

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

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

Returns true if self is of variant Channel.

Trait Implementations

impl Clone for From[src]

impl Debug for From[src]

impl PartialEq<From> for From[src]

impl StructuralPartialEq for From[src]

Auto Trait Implementations

impl RefUnwindSafe for From

impl Send for From

impl Sync for From

impl Unpin for From

impl UnwindSafe for From

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