pub struct IngestionValidationIssue {
pub code: String,
pub message: String,
pub cell_id: Option<u64>,
pub chunk_id: Option<String>,
}Fields§
§code: String§message: String§cell_id: Option<u64>§chunk_id: Option<String>Trait Implementations§
Source§impl Clone for IngestionValidationIssue
impl Clone for IngestionValidationIssue
Source§fn clone(&self) -> IngestionValidationIssue
fn clone(&self) -> IngestionValidationIssue
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 IngestionValidationIssue
impl Debug for IngestionValidationIssue
Source§impl<'de> Deserialize<'de> for IngestionValidationIssue
impl<'de> Deserialize<'de> for IngestionValidationIssue
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 IngestionValidationIssue
Source§impl PartialEq for IngestionValidationIssue
impl PartialEq for IngestionValidationIssue
Source§fn eq(&self, other: &IngestionValidationIssue) -> bool
fn eq(&self, other: &IngestionValidationIssue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IngestionValidationIssue
Auto Trait Implementations§
impl Freeze for IngestionValidationIssue
impl RefUnwindSafe for IngestionValidationIssue
impl Send for IngestionValidationIssue
impl Sync for IngestionValidationIssue
impl Unpin for IngestionValidationIssue
impl UnsafeUnpin for IngestionValidationIssue
impl UnwindSafe for IngestionValidationIssue
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