pub struct DavPutPlan {
pub resource_existed: bool,
pub create: bool,
pub create_new: bool,
pub content_length_hint: Option<u64>,
}Expand description
Product-side open/write settings selected from HTTP preconditions.
Fields§
§resource_existed: bool§create: bool§create_new: bool§content_length_hint: Option<u64>Trait Implementations§
Source§impl Clone for DavPutPlan
impl Clone for DavPutPlan
Source§fn clone(&self) -> DavPutPlan
fn clone(&self) -> DavPutPlan
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DavPutPlan
impl Debug for DavPutPlan
Source§impl PartialEq for DavPutPlan
impl PartialEq for DavPutPlan
Source§fn eq(&self, other: &DavPutPlan) -> bool
fn eq(&self, other: &DavPutPlan) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DavPutPlan
impl Eq for DavPutPlan
impl StructuralPartialEq for DavPutPlan
Auto Trait Implementations§
impl Freeze for DavPutPlan
impl RefUnwindSafe for DavPutPlan
impl Send for DavPutPlan
impl Sync for DavPutPlan
impl Unpin for DavPutPlan
impl UnsafeUnpin for DavPutPlan
impl UnwindSafe for DavPutPlan
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.