pub struct ValidateResult {
pub fatal_count: usize,
pub error_count: usize,
pub warn_count: usize,
pub info_count: usize,
pub skip_count: usize,
pub success_count: usize,
/* private fields */
}
Fields§
§fatal_count: usize
§error_count: usize
§warn_count: usize
§info_count: usize
§skip_count: usize
§success_count: usize
Implementations§
Source§impl ValidateResult
impl ValidateResult
pub fn new() -> Self
pub fn add_result_item(&mut self, items: Vec<ValidateResultItem>)
Trait Implementations§
Source§impl Clone for ValidateResult
impl Clone for ValidateResult
Source§fn clone(&self) -> ValidateResult
fn clone(&self) -> ValidateResult
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 moreSource§impl Debug for ValidateResult
impl Debug for ValidateResult
Source§impl Into<OperationOutcome> for ValidateResult
impl Into<OperationOutcome> for ValidateResult
Source§fn into(self) -> OperationOutcome
fn into(self) -> OperationOutcome
Converts this type into the (usually inferred) input type.
Auto Trait Implementations§
impl Freeze for ValidateResult
impl RefUnwindSafe for ValidateResult
impl Send for ValidateResult
impl Sync for ValidateResult
impl Unpin for ValidateResult
impl UnwindSafe for ValidateResult
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