pub struct ValidationHint {
pub code: String,
pub message: String,
}Expand description
Adapter-facing validation hint.
Fields§
§code: String§message: StringImplementations§
Trait Implementations§
Source§impl Clone for ValidationHint
impl Clone for ValidationHint
Source§fn clone(&self) -> ValidationHint
fn clone(&self) -> ValidationHint
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 ValidationHint
impl Debug for ValidationHint
Source§impl<'de> Deserialize<'de> for ValidationHint
impl<'de> Deserialize<'de> for ValidationHint
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
impl Eq for ValidationHint
Source§impl PartialEq for ValidationHint
impl PartialEq for ValidationHint
Source§fn eq(&self, other: &ValidationHint) -> bool
fn eq(&self, other: &ValidationHint) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ValidationHint
impl Serialize for ValidationHint
impl StructuralPartialEq for ValidationHint
Auto Trait Implementations§
impl Freeze for ValidationHint
impl RefUnwindSafe for ValidationHint
impl Send for ValidationHint
impl Sync for ValidationHint
impl Unpin for ValidationHint
impl UnsafeUnpin for ValidationHint
impl UnwindSafe for ValidationHint
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.