[][src]Struct rusoto_lakeformation::FilterCondition

pub struct FilterCondition {
    pub comparison_operator: Option<String>,
    pub field: Option<String>,
    pub string_value_list: Option<Vec<String>>,
}

This structure describes the filtering of columns in a table based on a filter condition.

Fields

comparison_operator: Option<String>

The comparison operator used in the filter condition.

field: Option<String>

The field to filter in the filter condition.

string_value_list: Option<Vec<String>>

A string with values used in evaluating the filter condition.

Trait Implementations

impl Clone for FilterCondition[src]

impl Debug for FilterCondition[src]

impl Default for FilterCondition[src]

impl PartialEq<FilterCondition> for FilterCondition[src]

impl Serialize for FilterCondition[src]

impl StructuralPartialEq for FilterCondition[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> Same<T> for T

type Output = T

Should always be Self

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.