pub struct FieldViolation {
pub field: String,
pub description: String,
}Expand description
A field-level validation error, matching google.rpc.BadRequest.FieldViolation.
Fields§
§field: String§description: StringTrait Implementations§
Source§impl Clone for FieldViolation
impl Clone for FieldViolation
Source§fn clone(&self) -> FieldViolation
fn clone(&self) -> FieldViolation
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 FieldViolation
impl Debug for FieldViolation
Source§impl<'de> Deserialize<'de> for FieldViolation
impl<'de> Deserialize<'de> for FieldViolation
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
Source§impl PartialEq for FieldViolation
impl PartialEq for FieldViolation
Source§fn eq(&self, other: &FieldViolation) -> bool
fn eq(&self, other: &FieldViolation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FieldViolation
impl Serialize for FieldViolation
impl StructuralPartialEq for FieldViolation
Auto Trait Implementations§
impl Freeze for FieldViolation
impl RefUnwindSafe for FieldViolation
impl Send for FieldViolation
impl Sync for FieldViolation
impl Unpin for FieldViolation
impl UnsafeUnpin for FieldViolation
impl UnwindSafe for FieldViolation
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