pub struct FieldWrongOrderError {
pub struct_name: String,
pub expected_field: String,
pub found_field: String,
}Expand description
Payload for ErrorKind::FieldWrongOrder.
Fields§
§struct_name: String§expected_field: String§found_field: StringTrait Implementations§
Source§impl Clone for FieldWrongOrderError
impl Clone for FieldWrongOrderError
Source§fn clone(&self) -> FieldWrongOrderError
fn clone(&self) -> FieldWrongOrderError
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 FieldWrongOrderError
impl Debug for FieldWrongOrderError
Source§impl PartialEq for FieldWrongOrderError
impl PartialEq for FieldWrongOrderError
impl Eq for FieldWrongOrderError
impl StructuralPartialEq for FieldWrongOrderError
Auto Trait Implementations§
impl Freeze for FieldWrongOrderError
impl RefUnwindSafe for FieldWrongOrderError
impl Send for FieldWrongOrderError
impl Sync for FieldWrongOrderError
impl Unpin for FieldWrongOrderError
impl UnwindSafe for FieldWrongOrderError
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