[][src]Struct furbooru::image::Image

pub struct Image {
    pub name: String,
    pub faves: i64,
    pub format: String,
    pub updated_at: String,
    pub downvotes: i64,
    pub duplicate_of: Option<u64>,
    pub tag_count: i64,
    pub spoilered: Option<bool>,
    pub uploader: Option<String>,
    pub deletion_reason: Option<String>,
    pub width: i64,
    pub processed: bool,
    pub created_at: String,
    pub orig_sha512_hash: String,
    pub view_url: String,
    pub uploader_id: Option<i64>,
    pub intensities: Option<Intensities>,
    pub score: i64,
    pub height: i64,
    pub mime_type: String,
    pub tag_ids: Vec<i64>,
    pub wilson_score: f64,
    pub first_seen_at: String,
    pub tags: Vec<String>,
    pub id: i64,
    pub upvotes: i64,
    pub comment_count: i64,
    pub representations: Option<Representations>,
    pub thumbnails_generated: bool,
    pub aspect_ratio: f64,
    pub hidden_from_users: bool,
    pub sha512_hash: String,
    pub source_url: Option<String>,
    pub description: String,
}

Fields

name: Stringfaves: i64format: Stringupdated_at: Stringdownvotes: i64duplicate_of: Option<u64>tag_count: i64spoilered: Option<bool>uploader: Option<String>deletion_reason: Option<String>width: i64processed: boolcreated_at: Stringorig_sha512_hash: Stringview_url: Stringuploader_id: Option<i64>intensities: Option<Intensities>score: i64height: i64mime_type: Stringtag_ids: Vec<i64>wilson_score: f64first_seen_at: Stringtags: Vec<String>id: i64upvotes: i64comment_count: i64representations: Option<Representations>thumbnails_generated: boolaspect_ratio: f64hidden_from_users: boolsha512_hash: Stringsource_url: Option<String>description: String

Trait Implementations

impl Clone for Image[src]

impl Debug for Image[src]

impl Default for Image[src]

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

impl PartialEq<Image> for Image[src]

impl Serialize for Image[src]

impl StructuralPartialEq for Image[src]

Auto Trait Implementations

impl RefUnwindSafe for Image

impl Send for Image

impl Sync for Image

impl Unpin for Image

impl UnwindSafe for Image

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,