pub struct GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation {
pub sql_expression: Option<String>,
}Expand description
Evaluates whether the provided expression is true.The SQL expression needs to use GoogleSQL syntax (https://cloud.google.com/bigquery/docs/reference/standard-sql/query-syntax) and should produce a scalar boolean result.Example: MIN(col1) >= 0
This type is not used in any activity, and only used as part of another schema.
Fields§
§sql_expression: Option<String>Optional. The SQL expression.
Trait Implementations§
Source§impl Clone for GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
impl Clone for GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
Source§fn clone(&self) -> GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
fn clone(&self) -> GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
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 Default for GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
impl Default for GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
Source§fn default() -> GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
fn default() -> GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
impl<'de> Deserialize<'de> for GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
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 Part for GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
Auto Trait Implementations§
impl Freeze for GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
impl RefUnwindSafe for GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
impl Send for GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
impl Sync for GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
impl Unpin for GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
impl UnsafeUnpin for GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
impl UnwindSafe for GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
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