[−][src]Struct onedrive_api::TrackChangeFetcher
The page fetcher for tracking operations with Iterator interface.
See also
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
pub async fn fetch_next_page<'_, '_>(
&'_ mut self,
onedrive: &'_ OneDrive
) -> Result<Option<Vec<DriveItem>>>[src]
&'_ mut self,
onedrive: &'_ OneDrive
) -> Result<Option<Vec<DriveItem>>>
Fetch the next page, or None if reaches the end.
pub async fn fetch_all<'_>(
self,
onedrive: &'_ OneDrive
) -> Result<(Vec<DriveItem>, String)>[src]
self,
onedrive: &'_ OneDrive
) -> Result<(Vec<DriveItem>, String)>
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
Auto Trait Implementations
impl RefUnwindSafe for TrackChangeFetcher
impl Send for TrackChangeFetcher
impl Sync for TrackChangeFetcher
impl Unpin for TrackChangeFetcher
impl UnwindSafe for TrackChangeFetcher
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
fn instrument(self, span: Span) -> Instrumented<Self>[src]
fn in_current_span(self) -> Instrumented<Self>[src]
impl<T> Instrument for T[src]
fn instrument(self, span: Span) -> Instrumented<Self>[src]
fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,