pub enum DavVersioningState {
Unsupported,
Versionable,
CheckedIn,
CheckedOut,
Version,
}Expand description
Product-neutral RFC 3253 state of a request target.
Variants§
Unsupported
The target does not expose the core version-control package.
Versionable
An ordinary resource that can be placed under version control.
CheckedIn
A version-controlled resource whose current version is checked in.
CheckedOut
A version-controlled resource whose current version is checked out.
Version
An immutable version resource.
Trait Implementations§
Source§impl Clone for DavVersioningState
impl Clone for DavVersioningState
Source§fn clone(&self) -> DavVersioningState
fn clone(&self) -> DavVersioningState
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 DavVersioningState
impl Debug for DavVersioningState
Source§impl Default for DavVersioningState
impl Default for DavVersioningState
Source§fn default() -> DavVersioningState
fn default() -> DavVersioningState
Returns the “default value” for a type. Read more
Source§impl Hash for DavVersioningState
impl Hash for DavVersioningState
Source§impl PartialEq for DavVersioningState
impl PartialEq for DavVersioningState
impl Copy for DavVersioningState
impl Eq for DavVersioningState
impl StructuralPartialEq for DavVersioningState
Auto Trait Implementations§
impl Freeze for DavVersioningState
impl RefUnwindSafe for DavVersioningState
impl Send for DavVersioningState
impl Sync for DavVersioningState
impl Unpin for DavVersioningState
impl UnwindSafe for DavVersioningState
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.