[][src]Struct fever_api::models::Items

pub struct Items {
    pub last_refreshed_on_time: String,
    pub total_items: usize,
    pub items: Vec<Item>,
}

Fields

last_refreshed_on_time: Stringtotal_items: usizeitems: Vec<Item>

Methods

impl Items[src]

pub fn decompose(self) -> (usize, Vec<Item>)[src]

destroy this entry batch and gain ownership of all the entries it contains

Trait Implementations

impl Clone for Items[src]

impl Debug for Items[src]

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

Auto Trait Implementations

impl RefUnwindSafe for Items

impl Send for Items

impl Sync for Items

impl Unpin for Items

impl UnwindSafe for Items

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> 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.