pub struct ValidationFieldError {
pub field: String,
pub rule_type: String,
pub message: String,
}Expand description
A validation error for a specific field in an input object.
Used to report validation failures with field-level granularity, including the field path, validation rule type, and error message.
Fields§
§field: StringPath to the field that failed validation (e.g., “user.email”, “addresses.0.zipcode”).
rule_type: StringType of validation rule that failed (e.g., “pattern”, “required”, “range”).
message: StringHuman-readable error message explaining what went wrong.
Implementations§
Trait Implementations§
Source§impl Clone for ValidationFieldError
impl Clone for ValidationFieldError
Source§fn clone(&self) -> ValidationFieldError
fn clone(&self) -> ValidationFieldError
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 ValidationFieldError
impl Debug for ValidationFieldError
Source§impl<'de> Deserialize<'de> for ValidationFieldError
impl<'de> Deserialize<'de> for ValidationFieldError
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 Display for ValidationFieldError
impl Display for ValidationFieldError
Auto Trait Implementations§
impl Freeze for ValidationFieldError
impl RefUnwindSafe for ValidationFieldError
impl Send for ValidationFieldError
impl Sync for ValidationFieldError
impl Unpin for ValidationFieldError
impl UnsafeUnpin for ValidationFieldError
impl UnwindSafe for ValidationFieldError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.