[][src]Struct grammers_tl_types::types::WebDocument

pub struct WebDocument {
    pub url: String,
    pub access_hash: i64,
    pub size: i32,
    pub mime_type: String,
    pub attributes: Vec<DocumentAttribute>,
}

Fields

url: Stringaccess_hash: i64size: i32mime_type: Stringattributes: Vec<DocumentAttribute>

Trait Implementations

impl Clone for WebDocument[src]

impl Debug for WebDocument[src]

impl Deserializable for WebDocument[src]

impl From<WebDocument> for WebDocument[src]

impl Identifiable for WebDocument[src]

impl PartialEq<WebDocument> for WebDocument[src]

impl Serializable for WebDocument[src]

impl StructuralPartialEq for WebDocument[src]

impl TryFrom<WebDocument> for WebDocument[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.