pub struct DavDirectoryPageRequest<'a, C> {
pub path: &'a DavPath,
pub cursor: Option<&'a C>,
pub maximum_entries: usize,
}Expand description
One bounded directory-page request with an opaque product-owned continuation cursor.
DavDirectoryEnumerator::read_directory_page receives a non-zero maximum_entries value.
The backend must return no more than that number of entries.
Fields§
§path: &'a DavPath§cursor: Option<&'a C>§maximum_entries: usizeTrait Implementations§
Source§impl<'a, C: Clone> Clone for DavDirectoryPageRequest<'a, C>
impl<'a, C: Clone> Clone for DavDirectoryPageRequest<'a, C>
Source§fn clone(&self) -> DavDirectoryPageRequest<'a, C>
fn clone(&self) -> DavDirectoryPageRequest<'a, C>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a, C: Debug> Debug for DavDirectoryPageRequest<'a, C>
impl<'a, C: Debug> Debug for DavDirectoryPageRequest<'a, C>
impl<'a, C: Copy> Copy for DavDirectoryPageRequest<'a, C>
Auto Trait Implementations§
impl<'a, C> Freeze for DavDirectoryPageRequest<'a, C>
impl<'a, C> RefUnwindSafe for DavDirectoryPageRequest<'a, C>where
C: RefUnwindSafe,
impl<'a, C> Send for DavDirectoryPageRequest<'a, C>where
C: Sync,
impl<'a, C> Sync for DavDirectoryPageRequest<'a, C>where
C: Sync,
impl<'a, C> Unpin for DavDirectoryPageRequest<'a, C>
impl<'a, C> UnwindSafe for DavDirectoryPageRequest<'a, C>where
C: RefUnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more