[][src]Struct rvk::objects::story::Story

pub struct Story {
    pub id: Integer,
    pub owner_id: Integer,
    pub date: Option<Integer>,
    pub expires_at: Option<Integer>,
    pub is_expired: Option<Boolean>,
    pub is_deleted: Option<Boolean>,
    pub can_see: Option<Integer>,
    pub seen: Option<Integer>,
    pub type_: Option<String>,
    pub photo: Option<Photo>,
    pub video: Option<Video>,
    pub link: Option<Link>,
    pub parent_story_owner_id: Option<Integer>,
    pub parent_story_id: Option<Integer>,
    pub parent_story: Option<Box<Story>>,
    pub replies: Option<Replies>,
    pub can_reply: Option<Integer>,
    pub can_share: Option<Integer>,
    pub can_comment: Option<Integer>,
    pub clickable_stickers: Option<ClickableStickers>,
    pub views: Option<Integer>,
    pub access_key: Option<String>,
}

Fields

id: Integerowner_id: Integerdate: Option<Integer>expires_at: Option<Integer>is_expired: Option<Boolean>is_deleted: Option<Boolean>can_see: Option<Integer>seen: Option<Integer>type_: Option<String>photo: Option<Photo>video: Option<Video>link: Option<Link>parent_story_owner_id: Option<Integer>parent_story_id: Option<Integer>parent_story: Option<Box<Story>>replies: Option<Replies>can_reply: Option<Integer>can_share: Option<Integer>can_comment: Option<Integer>clickable_stickers: Option<ClickableStickers>views: Option<Integer>access_key: Option<String>

Trait Implementations

impl Clone for Story[src]

impl Debug for Story[src]

impl<'de> Deserialize<'de> for Story[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.