[][src]Struct onedrive_api::ListChildrenFetcher

pub struct ListChildrenFetcher<'t> { /* fields omitted */ }

The page fetcher for listing children

See also

OneDrive::list_children_with_option

Methods

impl<'t> ListChildrenFetcher<'t>[src]

pub fn resume_from(token: &'t str, next_url: String) -> Self[src]

Resume a fetching process from url from ListChildrenFetcher::next_url.

pub fn next_url(&self) -> Option<&str>[src]

Try to get the url to the next page.

Used for resuming the fetching progress.

Error

Will success only if there are more pages and the first page is already readed.

Note

The first page data from OneDrive::list_children_with_option will be cached and have no idempotent url to resume/re-fetch.

pub fn fetch_next_page(
    &mut self
) -> impl Api<Response = Option<Vec<DriveItem>>> + '_
[src]

Fetch the next page, or None if reaches the end.

pub fn fetch_all(self) -> impl Api<Response = Vec<DriveItem>> + 't[src]

Fetch all rest pages and collect all items.

Errors

Any error occurs when fetching will lead to an failure, and all progress will be lost.

Trait Implementations

impl<'t> Debug for ListChildrenFetcher<'t>[src]

Auto Trait Implementations

impl<'t> Send for ListChildrenFetcher<'t>

impl<'t> Sync for ListChildrenFetcher<'t>

impl<'t> Unpin for ListChildrenFetcher<'t>

impl<'t> UnwindSafe for ListChildrenFetcher<'t>

impl<'t> RefUnwindSafe for ListChildrenFetcher<'t>

Blanket Implementations

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

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

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

type Error = !

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]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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