pub struct HoverFxValidationIssue {
pub severity: HoverFxValidationSeverity,
pub code: HoverFxValidationCode,
pub message: String,
pub field: Option<String>,
pub effect: Option<String>,
}Fields§
§severity: HoverFxValidationSeverity§code: HoverFxValidationCode§message: String§field: Option<String>§effect: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for HoverFxValidationIssue
impl Clone for HoverFxValidationIssue
Source§fn clone(&self) -> HoverFxValidationIssue
fn clone(&self) -> HoverFxValidationIssue
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 HoverFxValidationIssue
impl Debug for HoverFxValidationIssue
Source§impl<'de> Deserialize<'de> for HoverFxValidationIssue
impl<'de> Deserialize<'de> for HoverFxValidationIssue
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 HoverFxValidationIssue
Source§impl PartialEq for HoverFxValidationIssue
impl PartialEq for HoverFxValidationIssue
Source§fn eq(&self, other: &HoverFxValidationIssue) -> bool
fn eq(&self, other: &HoverFxValidationIssue) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HoverFxValidationIssue
impl Serialize for HoverFxValidationIssue
impl StructuralPartialEq for HoverFxValidationIssue
Auto Trait Implementations§
impl Freeze for HoverFxValidationIssue
impl RefUnwindSafe for HoverFxValidationIssue
impl Send for HoverFxValidationIssue
impl Sync for HoverFxValidationIssue
impl Unpin for HoverFxValidationIssue
impl UnsafeUnpin for HoverFxValidationIssue
impl UnwindSafe for HoverFxValidationIssue
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