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