pub struct FieldMismatch {
pub group: String,
pub field: String,
pub severity: MismatchSeverity,
pub rule: String,
pub gephyr_value: Option<String>,
pub known_good_value: Option<String>,
pub detail: String,
}Fields§
§group: String§field: String§severity: MismatchSeverity§rule: String§gephyr_value: Option<String>§known_good_value: Option<String>§detail: StringTrait Implementations§
Source§impl Clone for FieldMismatch
impl Clone for FieldMismatch
Source§fn clone(&self) -> FieldMismatch
fn clone(&self) -> FieldMismatch
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 FieldMismatch
impl Debug for FieldMismatch
Source§impl<'de> Deserialize<'de> for FieldMismatch
impl<'de> Deserialize<'de> for FieldMismatch
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
Auto Trait Implementations§
impl Freeze for FieldMismatch
impl RefUnwindSafe for FieldMismatch
impl Send for FieldMismatch
impl Sync for FieldMismatch
impl Unpin for FieldMismatch
impl UnsafeUnpin for FieldMismatch
impl UnwindSafe for FieldMismatch
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