pub struct ThemeTestResult {
pub success: bool,
pub message: String,
pub expected_value: Option<String>,
pub actual_value: Option<String>,
}Expand description
Result of a theme test
Fields§
§success: bool§message: String§expected_value: Option<String>§actual_value: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for ThemeTestResult
impl Clone for ThemeTestResult
Source§fn clone(&self) -> ThemeTestResult
fn clone(&self) -> ThemeTestResult
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 moreAuto Trait Implementations§
impl Freeze for ThemeTestResult
impl RefUnwindSafe for ThemeTestResult
impl Send for ThemeTestResult
impl Sync for ThemeTestResult
impl Unpin for ThemeTestResult
impl UnwindSafe for ThemeTestResult
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