[][src]Struct elefren::page::OwnedPage

pub struct OwnedPage<T: for<'de> Deserialize<'de>, H: HttpSend> {
    pub initial_items: Vec<T>,
    // some fields omitted
}

Owned version of the Page struct in this module. Allows this to be more easily stored for later use

Example

struct HomeTimeline {
    client: Mastodon,
    page: RefCell<Option<OwnedPage<Status, HttpSender>>>,
}
let client = Mastodon::from(data);
let home = client.get_home_timeline()?.to_owned();
let tl = HomeTimeline {
    client,
    page: RefCell::new(Some(home)),
};

Fields

initial_items: Vec<T>

Initial set of items

Methods

impl<T: for<'de> Deserialize<'de>, H: HttpSend> OwnedPage<T, H>[src]

pub fn next_page(&mut self) -> Result<Option<Vec<T>>>[src]

Method to retrieve the next page of results

pub fn prev_page(&mut self) -> Result<Option<Vec<T>>>[src]

Method to retrieve the prev page of results

Trait Implementations

impl<T: Clone + for<'de> Deserialize<'de>, H: Clone + HttpSend> Clone for OwnedPage<T, H>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a, T: for<'de> Deserialize<'de>, H: HttpSend> From<Page<'a, T, H>> for OwnedPage<T, H>[src]

impl<T: Debug + for<'de> Deserialize<'de>, H: Debug + HttpSend> Debug for OwnedPage<T, H>[src]

Auto Trait Implementations

impl<T, H> Send for OwnedPage<T, H> where
    H: Send,
    T: Send

impl<T, H> Sync for OwnedPage<T, H> where
    H: Sync,
    T: Sync

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Err = <U as TryFrom<T>>::Err