[][src]Struct gcp_client::google::bigtable::v1::row_filter::Condition

pub struct Condition {
    pub predicate_filter: Option<Box<RowFilter>>,
    pub true_filter: Option<Box<RowFilter>>,
    pub false_filter: Option<Box<RowFilter>>,
}

A RowFilter which evaluates one of two possible RowFilters, depending on whether or not a predicate RowFilter outputs any cells from the input row.

IMPORTANT NOTE: The predicate filter does not execute atomically with the true and false filters, which may lead to inconsistent or unexpected results. Additionally, Condition filters have poor performance, especially when filters are set for the false condition.

Fields

predicate_filter: Option<Box<RowFilter>>

If "predicate_filter" outputs any cells, then "true_filter" will be evaluated on the input row. Otherwise, "false_filter" will be evaluated.

true_filter: Option<Box<RowFilter>>

The filter to apply to the input row if "predicate_filter" returns any results. If not provided, no results will be returned in the true case.

false_filter: Option<Box<RowFilter>>

The filter to apply to the input row if "predicate_filter" does not return any results. If not provided, no results will be returned in the false case.

Trait Implementations

impl Clone for Condition[src]

impl Debug for Condition[src]

impl Default for Condition[src]

impl Message for Condition[src]

impl PartialEq<Condition> for Condition[src]

impl StructuralPartialEq for Condition[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]