pub enum DavAutoVersion {
None,
CheckoutCheckin,
CheckoutUnlockedCheckin,
Checkout,
LockedCheckout,
}Expand description
Automatic side effects selected by a product for checked-in resources.
Variants§
None
Mutation requires an explicitly checked-out resource.
CheckoutCheckin
Automatically check out before mutation and check in after it succeeds.
CheckoutUnlockedCheckin
Check out before mutation, then check in unless the resource is write-locked.
Checkout
Automatically check out before mutation and leave the resource checked out.
LockedCheckout
Automatically check out only when the checked-in resource is write-locked.
Trait Implementations§
Source§impl Clone for DavAutoVersion
impl Clone for DavAutoVersion
Source§fn clone(&self) -> DavAutoVersion
fn clone(&self) -> DavAutoVersion
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 DavAutoVersion
impl Debug for DavAutoVersion
Source§impl Default for DavAutoVersion
impl Default for DavAutoVersion
Source§fn default() -> DavAutoVersion
fn default() -> DavAutoVersion
Returns the “default value” for a type. Read more
Source§impl Hash for DavAutoVersion
impl Hash for DavAutoVersion
Source§impl PartialEq for DavAutoVersion
impl PartialEq for DavAutoVersion
impl Copy for DavAutoVersion
impl Eq for DavAutoVersion
impl StructuralPartialEq for DavAutoVersion
Auto Trait Implementations§
impl Freeze for DavAutoVersion
impl RefUnwindSafe for DavAutoVersion
impl Send for DavAutoVersion
impl Sync for DavAutoVersion
impl Unpin for DavAutoVersion
impl UnwindSafe for DavAutoVersion
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.