pub struct PreconditionMismatch {
pub path: String,
pub expected: String,
pub actual: String,
}Fields§
§path: String§expected: String§actual: StringTrait Implementations§
Source§impl Clone for PreconditionMismatch
impl Clone for PreconditionMismatch
Source§fn clone(&self) -> PreconditionMismatch
fn clone(&self) -> PreconditionMismatch
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 PreconditionMismatch
impl Debug for PreconditionMismatch
Source§impl<'de> Deserialize<'de> for PreconditionMismatch
impl<'de> Deserialize<'de> for PreconditionMismatch
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PreconditionMismatch
impl RefUnwindSafe for PreconditionMismatch
impl Send for PreconditionMismatch
impl Sync for PreconditionMismatch
impl Unpin for PreconditionMismatch
impl UnsafeUnpin for PreconditionMismatch
impl UnwindSafe for PreconditionMismatch
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