[][src]Struct zotero::data_structure::item::ForumPostData

pub struct ForumPostData {
    pub key: String,
    pub version: usize,
    pub item_type: String,
    pub title: String,
    pub creators: Vec<Creator>,
    pub abstract_note: String,
    pub forum_title: String,
    pub post_type: String,
    pub date: String,
    pub language: String,
    pub short_title: String,
    pub url: String,
    pub access_date: String,
    pub rights: String,
    pub extra: String,
    pub tags: Vec<String>,
    pub collections: Vec<String>,
    pub relations: HashMap<String, String>,
    pub date_added: String,
    pub date_modified: String,
}

A post on an online discussion forum. Also use this type for items such as Facebook posts or tweets.

Fields

key: Stringversion: usizeitem_type: Stringtitle: Stringcreators: Vec<Creator>abstract_note: Stringforum_title: Stringpost_type: Stringdate: Stringlanguage: Stringshort_title: Stringurl: Stringaccess_date: Stringrights: Stringextra: Stringtags: Vec<String>collections: Vec<String>relations: HashMap<String, String>date_added: Stringdate_modified: String

Trait Implementations

impl ToJson for ForumPostData[src]

impl Clone for ForumPostData[src]

impl Default for ForumPostData[src]

impl Debug for ForumPostData[src]

impl Serialize for ForumPostData[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]