pub struct ValidationStep {
pub name: String,
pub passed: bool,
pub details: String,
}Expand description
A single validation step result.
Fields§
§name: StringName of the validation step
passed: boolWhether this step passed
details: StringDetails of the validation (for debugging)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ValidationStep
impl RefUnwindSafe for ValidationStep
impl Send for ValidationStep
impl Sync for ValidationStep
impl Unpin for ValidationStep
impl UnsafeUnpin for ValidationStep
impl UnwindSafe for ValidationStep
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