pub struct DavMutationOutcome {
pub operation: DavMutationOperation,
pub request_target: DavPath,
pub destination_existed: bool,
pub failures: Vec<DavMutationFailure>,
pub stop: Option<DavMutationStop>,
pub progress: DavTraversalProgress,
}Expand description
Complete or partial result of recursive mutation execution.
Fields§
§operation: DavMutationOperation§request_target: DavPath§destination_existed: bool§failures: Vec<DavMutationFailure>§stop: Option<DavMutationStop>§progress: DavTraversalProgressImplementations§
Source§impl DavMutationOutcome
impl DavMutationOutcome
pub fn is_complete_success(&self) -> bool
Trait Implementations§
Source§impl Clone for DavMutationOutcome
impl Clone for DavMutationOutcome
Source§fn clone(&self) -> DavMutationOutcome
fn clone(&self) -> DavMutationOutcome
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 DavMutationOutcome
impl Debug for DavMutationOutcome
Source§impl PartialEq for DavMutationOutcome
impl PartialEq for DavMutationOutcome
impl Eq for DavMutationOutcome
impl StructuralPartialEq for DavMutationOutcome
Auto Trait Implementations§
impl Freeze for DavMutationOutcome
impl RefUnwindSafe for DavMutationOutcome
impl Send for DavMutationOutcome
impl Sync for DavMutationOutcome
impl Unpin for DavMutationOutcome
impl UnwindSafe for DavMutationOutcome
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.