Enum gapi_grpc::google::privacy::dlp::v2::RelationalOperator[][src]

#[repr(i32)]pub enum RelationalOperator {
    Unspecified,
    EqualTo,
    NotEqualTo,
    GreaterThan,
    LessThan,
    GreaterThanOrEquals,
    LessThanOrEquals,
    Exists,
}

Operators available for comparing the value of fields.

Variants

Unspecified

Unused

EqualTo

Equal. Attempts to match even with incompatible types.

NotEqualTo

Not equal to. Attempts to match even with incompatible types.

GreaterThan

Greater than.

LessThan

Less than.

GreaterThanOrEquals

Greater than or equals.

LessThanOrEquals

Less than or equals.

Exists

Exists

Implementations

impl RelationalOperator[src]

pub fn is_valid(value: i32) -> bool[src]

Returns true if value is a variant of RelationalOperator.

pub fn from_i32(value: i32) -> Option<RelationalOperator>[src]

Converts an i32 to a RelationalOperator, or None if value is not a valid variant.

Trait Implementations

impl Clone for RelationalOperator[src]

impl Copy for RelationalOperator[src]

impl Debug for RelationalOperator[src]

impl Default for RelationalOperator[src]

impl Eq for RelationalOperator[src]

impl From<RelationalOperator> for i32[src]

impl Hash for RelationalOperator[src]

impl Ord for RelationalOperator[src]

impl PartialEq<RelationalOperator> for RelationalOperator[src]

impl PartialOrd<RelationalOperator> for RelationalOperator[src]

impl StructuralEq for RelationalOperator[src]

impl StructuralPartialEq for RelationalOperator[src]

Auto Trait Implementations

impl RefUnwindSafe for RelationalOperator

impl Send for RelationalOperator

impl Sync for RelationalOperator

impl Unpin for RelationalOperator

impl UnwindSafe for RelationalOperator

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument 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>, 
[src]

impl<T> WithSubscriber for T[src]