pub struct ValidationExceptionField {
pub message: String,
pub name: String,
}
Expand description
Describes a validation exception for a field.
Fields§
§message: String
The message for the field.
name: String
The name of the field.
Trait Implementations§
Source§impl Clone for ValidationExceptionField
impl Clone for ValidationExceptionField
Source§fn clone(&self) -> ValidationExceptionField
fn clone(&self) -> ValidationExceptionField
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 ValidationExceptionField
impl Debug for ValidationExceptionField
Source§impl Default for ValidationExceptionField
impl Default for ValidationExceptionField
Source§fn default() -> ValidationExceptionField
fn default() -> ValidationExceptionField
Returns the “default value” for a type. Read more
Source§impl PartialEq for ValidationExceptionField
impl PartialEq for ValidationExceptionField
impl StructuralPartialEq for ValidationExceptionField
Auto Trait Implementations§
impl Freeze for ValidationExceptionField
impl RefUnwindSafe for ValidationExceptionField
impl Send for ValidationExceptionField
impl Sync for ValidationExceptionField
impl Unpin for ValidationExceptionField
impl UnwindSafe for ValidationExceptionField
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