pub struct IngestionValidationReport {
pub cells_seen: usize,
pub warnings: Vec<IngestionValidationIssue>,
pub skipped_items: Vec<IngestionSkippedItem>,
pub source_refs: Vec<IngestionSourceRefReport>,
}Fields§
§cells_seen: usize§warnings: Vec<IngestionValidationIssue>§skipped_items: Vec<IngestionSkippedItem>§source_refs: Vec<IngestionSourceRefReport>Trait Implementations§
Source§impl Clone for IngestionValidationReport
impl Clone for IngestionValidationReport
Source§fn clone(&self) -> IngestionValidationReport
fn clone(&self) -> IngestionValidationReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IngestionValidationReport
impl Debug for IngestionValidationReport
Source§impl<'de> Deserialize<'de> for IngestionValidationReport
impl<'de> Deserialize<'de> for IngestionValidationReport
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
impl Eq for IngestionValidationReport
Source§impl PartialEq for IngestionValidationReport
impl PartialEq for IngestionValidationReport
Source§fn eq(&self, other: &IngestionValidationReport) -> bool
fn eq(&self, other: &IngestionValidationReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IngestionValidationReport
Auto Trait Implementations§
impl Freeze for IngestionValidationReport
impl RefUnwindSafe for IngestionValidationReport
impl Send for IngestionValidationReport
impl Sync for IngestionValidationReport
impl Unpin for IngestionValidationReport
impl UnsafeUnpin for IngestionValidationReport
impl UnwindSafe for IngestionValidationReport
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