pub struct DavDirectoryPage<E, C> {
pub entries: Vec<E>,
pub next_cursor: Option<C>,
}Expand description
One product-owned directory page.
Entries must be in strictly ascending DavDirectoryEntry::stable_key order and must not
exceed the request’s maximum_entries. An empty entries collection must use None for
next_cursor rather than returning an empty continuation page.
Fields§
§entries: Vec<E>§next_cursor: Option<C>Trait Implementations§
Source§impl<E: Clone, C: Clone> Clone for DavDirectoryPage<E, C>
impl<E: Clone, C: Clone> Clone for DavDirectoryPage<E, C>
Source§fn clone(&self) -> DavDirectoryPage<E, C>
fn clone(&self) -> DavDirectoryPage<E, 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 moreimpl<E: Eq, C: Eq> Eq for DavDirectoryPage<E, C>
impl<E, C> StructuralPartialEq for DavDirectoryPage<E, C>
Auto Trait Implementations§
impl<E, C> Freeze for DavDirectoryPage<E, C>where
C: Freeze,
impl<E, C> RefUnwindSafe for DavDirectoryPage<E, C>where
C: RefUnwindSafe,
E: RefUnwindSafe,
impl<E, C> Send for DavDirectoryPage<E, C>
impl<E, C> Sync for DavDirectoryPage<E, C>
impl<E, C> Unpin for DavDirectoryPage<E, C>
impl<E, C> UnwindSafe for DavDirectoryPage<E, C>where
C: UnwindSafe,
E: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.