Struct google_datastore1::PropertyFilter[][src]

pub struct PropertyFilter {
    pub property: Option<PropertyReference>,
    pub value: Option<Value>,
    pub op: Option<String>,
}

A filter on a specific property.

This type is not used in any activity, and only used as part of another schema.

Fields

The property to filter by.

The value to compare the property to.

The operator to filter by.

Trait Implementations

impl Default for PropertyFilter
[src]

Returns the "default value" for a type. Read more

impl Clone for PropertyFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PropertyFilter
[src]

Formats the value using the given formatter. Read more

impl Part for PropertyFilter
[src]

Auto Trait Implementations