pub struct ProductStatusDataQualityIssue {
pub value_provided: Option<String>,
pub severity: Option<String>,
pub timestamp: Option<String>,
pub detail: Option<String>,
pub location: Option<String>,
pub value_on_landing_page: Option<String>,
pub id: Option<String>,
pub fetch_status: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§value_provided: Option<String>The value the attribute had at time of evaluation.
severity: Option<String>The severity of the data quality issue.
timestamp: Option<String>The time stamp of the data quality issue.
detail: Option<String>A more detailed error string.
location: Option<String>The attribute name that is relevant for the issue.
value_on_landing_page: Option<String>The value of that attribute that was found on the landing page
id: Option<String>The id of the data quality issue.
fetch_status: Option<String>The fetch status for landing_page_errors.
Trait Implementations§
source§impl Clone for ProductStatusDataQualityIssue
impl Clone for ProductStatusDataQualityIssue
source§fn clone(&self) -> ProductStatusDataQualityIssue
fn clone(&self) -> ProductStatusDataQualityIssue
Returns a copy 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 Default for ProductStatusDataQualityIssue
impl Default for ProductStatusDataQualityIssue
source§fn default() -> ProductStatusDataQualityIssue
fn default() -> ProductStatusDataQualityIssue
Returns the “default value” for a type. Read more
source§impl Deserialize for ProductStatusDataQualityIssue
impl Deserialize for ProductStatusDataQualityIssue
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
Deserialize this value from the given Serde deserializer. Read more
impl Part for ProductStatusDataQualityIssue
Auto Trait Implementations§
impl Freeze for ProductStatusDataQualityIssue
impl RefUnwindSafe for ProductStatusDataQualityIssue
impl Send for ProductStatusDataQualityIssue
impl Sync for ProductStatusDataQualityIssue
impl Unpin for ProductStatusDataQualityIssue
impl UnwindSafe for ProductStatusDataQualityIssue
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more