Struct gapi_grpc::google::cloud::talent::v4beta1::ApplicationDateFilter[][src]

pub struct ApplicationDateFilter {
    pub start_date: Option<Date>,
    pub end_date: Option<Date>,
}

Application Date Range Filter.

The API matches profiles with [Application.application_date][google.cloud.talent.v4beta1.Application.application_date] between start date and end date (both boundaries are inclusive). The filter is ignored if both [start_date][google.cloud.talent.v4beta1.ApplicationDateFilter.start_date] and [end_date][google.cloud.talent.v4beta1.ApplicationDateFilter.end_date] are missing.

Fields

start_date: Option<Date>

Start date. If it’s missing, The API matches profiles with application date not after the end date.

end_date: Option<Date>

End date. If it’s missing, The API matches profiles with application date not before the start date.

Trait Implementations

impl Clone for ApplicationDateFilter[src]

impl Debug for ApplicationDateFilter[src]

impl Default for ApplicationDateFilter[src]

impl Message for ApplicationDateFilter[src]

impl PartialEq<ApplicationDateFilter> for ApplicationDateFilter[src]

impl StructuralPartialEq for ApplicationDateFilter[src]

Auto Trait Implementations

impl RefUnwindSafe for ApplicationDateFilter

impl Send for ApplicationDateFilter

impl Sync for ApplicationDateFilter

impl Unpin for ApplicationDateFilter

impl UnwindSafe for ApplicationDateFilter

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> 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]