pub struct DavTraversalProgress {
pub visited_resources: usize,
pub queued_work_items: usize,
pub failures: usize,
pub completed_mutations: usize,
}Expand description
Current recursive traversal accounting.
Fields§
§visited_resources: usize§queued_work_items: usize§failures: usize§completed_mutations: usizeTrait Implementations§
Source§impl Clone for DavTraversalProgress
impl Clone for DavTraversalProgress
Source§fn clone(&self) -> DavTraversalProgress
fn clone(&self) -> DavTraversalProgress
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 Debug for DavTraversalProgress
impl Debug for DavTraversalProgress
Source§impl Default for DavTraversalProgress
impl Default for DavTraversalProgress
Source§fn default() -> DavTraversalProgress
fn default() -> DavTraversalProgress
Returns the “default value” for a type. Read more
Source§impl PartialEq for DavTraversalProgress
impl PartialEq for DavTraversalProgress
impl Copy for DavTraversalProgress
impl Eq for DavTraversalProgress
impl StructuralPartialEq for DavTraversalProgress
Auto Trait Implementations§
impl Freeze for DavTraversalProgress
impl RefUnwindSafe for DavTraversalProgress
impl Send for DavTraversalProgress
impl Sync for DavTraversalProgress
impl Unpin for DavTraversalProgress
impl UnwindSafe for DavTraversalProgress
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.