Enum tumblr::Note [] [src]

pub enum Note {
    Reblog {
        added_text: Option<String>,
        post_id: String,
        reblog_parent_blog_name: String,
        avatar_shape: String,
        blog_name: String,
        blog_url: String,
        blog_uuid: String,
        followed: bool,
        timestamp: u64,
    },
    Like {
        avatar_shape: String,
        blog_name: String,
        blog_url: String,
        blog_uuid: String,
        followed: bool,
        timestamp: u64,
    },
    Posted {
        avatar_shape: String,
        blog_name: String,
        blog_url: String,
        blog_uuid: String,
        followed: bool,
        timestamp: u64,
    },
}

Variants

Fields of Reblog

Fields of Like

Fields of Posted

Trait Implementations

impl Debug for Note
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for Note
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

Auto Trait Implementations

impl Send for Note

impl Sync for Note