pub struct DatasetValidationResult {
pub valid: bool,
pub errors: Vec<String>,
pub warnings: Vec<String>,
pub total_rows_validated: usize,
}Expand description
Dataset validation result
Fields§
§valid: boolWhether the dataset is valid
errors: Vec<String>Validation errors
warnings: Vec<String>Validation warnings
total_rows_validated: usizeTotal number of rows validated
Trait Implementations§
Source§impl Clone for DatasetValidationResult
impl Clone for DatasetValidationResult
Source§fn clone(&self) -> DatasetValidationResult
fn clone(&self) -> DatasetValidationResult
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 DatasetValidationResult
impl Debug for DatasetValidationResult
Source§impl<'de> Deserialize<'de> for DatasetValidationResult
impl<'de> Deserialize<'de> for DatasetValidationResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DatasetValidationResult
impl RefUnwindSafe for DatasetValidationResult
impl Send for DatasetValidationResult
impl Sync for DatasetValidationResult
impl Unpin for DatasetValidationResult
impl UnwindSafe for DatasetValidationResult
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