pub enum InvalidArgumentV1 {
FieldViolations {
field_violations: Vec<FieldViolation>,
},
Format {
format: String,
},
Constraint {
constraint: String,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for InvalidArgumentV1
impl Clone for InvalidArgumentV1
Source§fn clone(&self) -> InvalidArgumentV1
fn clone(&self) -> InvalidArgumentV1
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 InvalidArgumentV1
impl Debug for InvalidArgumentV1
Auto Trait Implementations§
impl Freeze for InvalidArgumentV1
impl RefUnwindSafe for InvalidArgumentV1
impl Send for InvalidArgumentV1
impl Sync for InvalidArgumentV1
impl Unpin for InvalidArgumentV1
impl UnsafeUnpin for InvalidArgumentV1
impl UnwindSafe for InvalidArgumentV1
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