[][src]Struct rvk::objects::video::Video

pub struct Video {
    pub id: Integer,
    pub owner_id: Integer,
    pub title: String,
    pub description: String,
    pub duration: Integer,
    pub image: Option<Vec<VideoImage>>,
    pub photo_130: Option<String>,
    pub photo_320: Option<String>,
    pub photo_640: Option<String>,
    pub photo_800: Option<String>,
    pub photo_1280: Option<String>,
    pub first_frame: Option<Vec<VideoImage>>,
    pub first_frame_130: Option<String>,
    pub first_frame_160: Option<String>,
    pub first_frame_320: Option<String>,
    pub first_frame_640: Option<String>,
    pub first_frame_800: Option<String>,
    pub first_frame_1280: Option<String>,
    pub date: Integer,
    pub adding_date: Option<Integer>,
    pub views: Integer,
    pub comments: Integer,
    pub player: Option<String>,
    pub platform: Option<String>,
    pub can_edit: Option<Integer>,
    pub can_add: Integer,
    pub is_private: Option<Integer>,
    pub access_key: Option<String>,
    pub processing: Option<Integer>,
    pub live: Option<Integer>,
    pub upcoming: Option<Integer>,
    pub is_favorite: Option<Boolean>,
}

Fields

id: Integerowner_id: Integertitle: Stringdescription: Stringduration: Integerimage: Option<Vec<VideoImage>>photo_130: Option<String>photo_320: Option<String>photo_640: Option<String>photo_800: Option<String>photo_1280: Option<String>first_frame: Option<Vec<VideoImage>>first_frame_130: Option<String>first_frame_160: Option<String>first_frame_320: Option<String>first_frame_640: Option<String>first_frame_800: Option<String>first_frame_1280: Option<String>date: Integeradding_date: Option<Integer>views: Integercomments: Integerplayer: Option<String>platform: Option<String>can_edit: Option<Integer>can_add: Integeris_private: Option<Integer>access_key: Option<String>processing: Option<Integer>live: Option<Integer>upcoming: Option<Integer>is_favorite: Option<Boolean>

Trait Implementations

impl Clone for Video[src]

impl Debug for Video[src]

impl<'de> Deserialize<'de> for Video[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.