pub struct SchemaMismatch {
pub missing: Vec<(String, String)>,
pub wrong_type: Vec<(String, String, String)>,
pub extra: Vec<String>,
}Fields§
§missing: Vec<(String, String)>§wrong_type: Vec<(String, String, String)>§extra: Vec<String>Trait Implementations§
Source§impl Clone for SchemaMismatch
impl Clone for SchemaMismatch
Source§fn clone(&self) -> SchemaMismatch
fn clone(&self) -> SchemaMismatch
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 SchemaMismatch
impl Debug for SchemaMismatch
Source§impl<'de> Deserialize<'de> for SchemaMismatch
impl<'de> Deserialize<'de> for SchemaMismatch
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 SchemaMismatch
impl RefUnwindSafe for SchemaMismatch
impl Send for SchemaMismatch
impl Sync for SchemaMismatch
impl Unpin for SchemaMismatch
impl UnsafeUnpin for SchemaMismatch
impl UnwindSafe for SchemaMismatch
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