pub struct DavMutationCommand {
pub operation: DavMutationOperation,
pub step: DavMutationStepKind,
pub role: DavMutationTargetRole,
pub source: DavPath,
pub destination: Option<DavPath>,
}Expand description
One product-authoritative mutation step.
The product port must perform the resource write, transactional lock revalidation, rooted-lock cleanup or destination-lock rebinding, and derived lock-state synchronization in one commit.
Fields§
§operation: DavMutationOperation§step: DavMutationStepKind§role: DavMutationTargetRole§source: DavPath§destination: Option<DavPath>Implementations§
Source§impl DavMutationCommand
impl DavMutationCommand
pub fn affected_path(&self) -> &DavPath
Trait Implementations§
Source§impl Clone for DavMutationCommand
impl Clone for DavMutationCommand
Source§fn clone(&self) -> DavMutationCommand
fn clone(&self) -> DavMutationCommand
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 DavMutationCommand
impl Debug for DavMutationCommand
Source§impl PartialEq for DavMutationCommand
impl PartialEq for DavMutationCommand
impl Eq for DavMutationCommand
impl StructuralPartialEq for DavMutationCommand
Auto Trait Implementations§
impl Freeze for DavMutationCommand
impl RefUnwindSafe for DavMutationCommand
impl Send for DavMutationCommand
impl Sync for DavMutationCommand
impl Unpin for DavMutationCommand
impl UnwindSafe for DavMutationCommand
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.