pub struct ClassTestResult {
pub success: bool,
pub message: String,
pub expected_classes: HashSet<String>,
pub actual_classes: HashSet<String>,
pub missing_classes: HashSet<String>,
pub extra_classes: HashSet<String>,
}Expand description
Result of a class test
Fields§
§success: bool§message: String§expected_classes: HashSet<String>§actual_classes: HashSet<String>§missing_classes: HashSet<String>§extra_classes: HashSet<String>Implementations§
Trait Implementations§
Source§impl Clone for ClassTestResult
impl Clone for ClassTestResult
Source§fn clone(&self) -> ClassTestResult
fn clone(&self) -> ClassTestResult
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 ClassTestResult
impl RefUnwindSafe for ClassTestResult
impl Send for ClassTestResult
impl Sync for ClassTestResult
impl Unpin for ClassTestResult
impl UnwindSafe for ClassTestResult
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