[][src]Struct nyaasi_scraper::NyaasiEntry

pub struct NyaasiEntry {
    pub url: String,
    pub kind: EntryKind,
    pub name: String,
    pub comments: u32,
    pub links: Links,
    pub sizes: Sizes,
    pub date: String,
    pub seeders: u32,
    pub leechers: u32,
    pub downloads: u32,
}

Represents a download entry

Fields

url: String

URL of this entry (parsing this page isn't supported for now)

kind: EntryKind

Type of this entry

name: String

Name of the entry

comments: u32

Number of comments on this entry

links: Links

Download links

sizes: Sizes

Entry size

date: String

Date added

seeders: u32

Number of seeders

leechers: u32

Number of leechers

downloads: u32

Number of downloads completed

Trait Implementations

impl Debug for NyaasiEntry[src]

impl Serialize for NyaasiEntry[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

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

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]