[][src]Struct nyaasi_scraper::Results

pub struct Results {
    pub entries: Vec<NyaasiEntry>,
    pub pagination: Option<Pagination>,
}

Data contained in a nyaa.si page.

Fields

entries: Vec<NyaasiEntry>

Entries in the page, in chronological order (aka newest last)

pagination: Option<Pagination>

Pagination information extracted from the page.

Methods

impl Results[src]

pub fn empty() -> Results[src]

Returns an empty result set.

Examples

let r = nyaasi_scraper::Results::empty();

assert_eq!(r.entries.len(), 0);
assert!(r.pagination.is_none());

Trait Implementations

impl Debug for Results[src]

impl Serialize for Results[src]

Auto Trait Implementations

impl Send for Results

impl Sync for Results

impl Unpin for Results

impl UnwindSafe for Results

impl RefUnwindSafe for Results

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]