pub struct SemanticHints {
pub positive_columns: Vec<String>,
pub identifier_columns: Vec<String>,
}Expand description
User-supplied semantic hints that affect profiling and quality metrics.
Fields§
§positive_columns: Vec<String>§identifier_columns: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for SemanticHints
impl Clone for SemanticHints
Source§fn clone(&self) -> SemanticHints
fn clone(&self) -> SemanticHints
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 SemanticHints
impl Debug for SemanticHints
Source§impl Default for SemanticHints
impl Default for SemanticHints
Source§fn default() -> SemanticHints
fn default() -> SemanticHints
Returns the “default value” for a type. Read more
Source§impl PartialEq for SemanticHints
impl PartialEq for SemanticHints
Source§fn eq(&self, other: &SemanticHints) -> bool
fn eq(&self, other: &SemanticHints) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SemanticHints
impl StructuralPartialEq for SemanticHints
Auto Trait Implementations§
impl Freeze for SemanticHints
impl RefUnwindSafe for SemanticHints
impl Send for SemanticHints
impl Sync for SemanticHints
impl Unpin for SemanticHints
impl UnsafeUnpin for SemanticHints
impl UnwindSafe for SemanticHints
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