[][src]Enum grammers_tl_types::enums::WebPage

pub enum WebPage {
    Empty(WebPageEmpty),
    Pending(WebPagePending),
    Page(WebPage),
    NotModified(WebPageNotModified),
}

Variants

Page(WebPage)
NotModified(WebPageNotModified)

Trait Implementations

impl Clone for WebPage[src]

impl Debug for WebPage[src]

impl Deserializable for WebPage[src]

impl From<WebPage> for WebPage[src]

impl From<WebPageEmpty> for WebPage[src]

impl From<WebPageNotModified> for WebPage[src]

impl From<WebPagePending> for WebPage[src]

impl PartialEq<WebPage> for WebPage[src]

impl Serializable for WebPage[src]

impl StructuralPartialEq for WebPage[src]

impl TryFrom<WebPage> for WebPage[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<WebPage> for WebPageEmpty[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<WebPage> for WebPageNotModified[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<WebPage> for WebPagePending[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for WebPage

impl Send for WebPage

impl Sync for WebPage

impl Unpin for WebPage

impl UnwindSafe for WebPage

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.