pub struct ThemeValidationResult {
pub is_valid: bool,
pub warnings: Vec<String>,
pub errors: Vec<String>,
}Expand description
Theme validation result.
Fields§
§is_valid: bool§warnings: Vec<String>§errors: Vec<String>Trait Implementations§
Source§impl Clone for ThemeValidationResult
impl Clone for ThemeValidationResult
Source§fn clone(&self) -> ThemeValidationResult
fn clone(&self) -> ThemeValidationResult
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 moreAuto Trait Implementations§
impl Freeze for ThemeValidationResult
impl RefUnwindSafe for ThemeValidationResult
impl Send for ThemeValidationResult
impl Sync for ThemeValidationResult
impl Unpin for ThemeValidationResult
impl UnsafeUnpin for ThemeValidationResult
impl UnwindSafe for ThemeValidationResult
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