[][src]Struct onedrive_api::TrackChangeFetcher

pub struct TrackChangeFetcher { /* fields omitted */ }

The page fetcher for tracking operations with Iterator interface.

See also

OneDrive::track_changes_from_initial

OneDrive::track_changes_from_delta_url

Implementations

impl TrackChangeFetcher[src]

pub fn resume_from(next_url: String) -> Self[src]

Resume a fetching process from url.

The url should be from TrackChangeFetcher::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::track_changes_from_initial_with_option will be cached and have no idempotent url to resume/re-fetch.

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

Try to the delta url representing a snapshot of current track change operation.

Used for tracking changes from this snapshot (rather than initial) later, using OneDrive::track_changes_from_delta_url.

Error

Will success only if there are no more pages.

See also

OneDrive::track_changes_from_delta_url

Microsoft Docs

pub async fn fetch_next_page(
    &mut self,
    onedrive: &OneDrive
) -> Result<Option<Vec<DriveItem>>>
[src]

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

pub async fn fetch_all(
    self,
    onedrive: &OneDrive
) -> Result<(Vec<DriveItem>, String)>
[src]

Fetch all rest pages, collect all items, and also return delta_url.

Errors

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

Trait Implementations

impl Debug for TrackChangeFetcher[src]

Auto Trait Implementations

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument 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.