#[non_exhaustive]pub struct DataQualityDimension {
pub name: String,
/* private fields */
}Expand description
A dimension captures data quality intent about a defined subset of the rules specified.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringOutput only. The dimension name a rule belongs to. Custom dimension name is supported with all uppercase letters and maximum length of 30 characters.
Implementations§
Trait Implementations§
Source§impl Clone for DataQualityDimension
impl Clone for DataQualityDimension
Source§fn clone(&self) -> DataQualityDimension
fn clone(&self) -> DataQualityDimension
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 DataQualityDimension
impl Debug for DataQualityDimension
Source§impl Default for DataQualityDimension
impl Default for DataQualityDimension
Source§fn default() -> DataQualityDimension
fn default() -> DataQualityDimension
Returns the “default value” for a type. Read more
Source§impl Message for DataQualityDimension
impl Message for DataQualityDimension
Source§impl PartialEq for DataQualityDimension
impl PartialEq for DataQualityDimension
impl StructuralPartialEq for DataQualityDimension
Auto Trait Implementations§
impl Freeze for DataQualityDimension
impl RefUnwindSafe for DataQualityDimension
impl Send for DataQualityDimension
impl Sync for DataQualityDimension
impl Unpin for DataQualityDimension
impl UnsafeUnpin for DataQualityDimension
impl UnwindSafe for DataQualityDimension
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