[][src]Enum grammers_tl_types::enums::InputPeer

pub enum InputPeer {
    Empty(InputPeerEmpty),
    PeerSelf(InputPeerSelf),
    Chat(InputPeerChat),
    User(InputPeerUser),
    Channel(InputPeerChannel),
    UserFromMessage(Box<InputPeerUserFromMessage>),
    ChannelFromMessage(Box<InputPeerChannelFromMessage>),
}

Variants

PeerSelf(InputPeerSelf)
UserFromMessage(Box<InputPeerUserFromMessage>)
ChannelFromMessage(Box<InputPeerChannelFromMessage>)

Trait Implementations

impl Clone for InputPeer[src]

impl Debug for InputPeer[src]

impl Deserializable for InputPeer[src]

impl From<InputPeerChannel> for InputPeer[src]

impl From<InputPeerChannelFromMessage> for InputPeer[src]

impl From<InputPeerChat> for InputPeer[src]

impl From<InputPeerEmpty> for InputPeer[src]

impl From<InputPeerSelf> for InputPeer[src]

impl From<InputPeerUser> for InputPeer[src]

impl From<InputPeerUserFromMessage> for InputPeer[src]

impl PartialEq<InputPeer> for InputPeer[src]

impl Serializable for InputPeer[src]

impl StructuralPartialEq for InputPeer[src]

impl TryFrom<InputPeer> for InputPeerChannel[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<InputPeer> for InputPeerChannelFromMessage[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<InputPeer> for InputPeerChat[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<InputPeer> for InputPeerEmpty[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<InputPeer> for InputPeerSelf[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<InputPeer> for InputPeerUser[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<InputPeer> for InputPeerUserFromMessage[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

Auto Trait Implementations

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.