pub struct DavMutationRequest {
pub operation: DavMutationOperation,
pub source: DavPath,
pub source_kind: DavResourceKind,
pub destination: Option<DavPath>,
pub destination_kind: Option<DavResourceKind>,
pub destination_existed: bool,
pub recurse_collections: bool,
}Expand description
Input for one recursive mutation.
Fields§
§operation: DavMutationOperation§source: DavPath§source_kind: DavResourceKind§destination: Option<DavPath>§destination_kind: Option<DavResourceKind>§destination_existed: bool§recurse_collections: boolTrait Implementations§
Source§impl Clone for DavMutationRequest
impl Clone for DavMutationRequest
Source§fn clone(&self) -> DavMutationRequest
fn clone(&self) -> DavMutationRequest
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 DavMutationRequest
impl Debug for DavMutationRequest
Source§impl PartialEq for DavMutationRequest
impl PartialEq for DavMutationRequest
impl Eq for DavMutationRequest
impl StructuralPartialEq for DavMutationRequest
Auto Trait Implementations§
impl Freeze for DavMutationRequest
impl RefUnwindSafe for DavMutationRequest
impl Send for DavMutationRequest
impl Sync for DavMutationRequest
impl Unpin for DavMutationRequest
impl UnwindSafe for DavMutationRequest
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.