Struct gapi_grpc::google::cloud::bigquery::datatransfer::v1::start_manual_transfer_runs_request::TimeRange[][src]

pub struct TimeRange {
    pub start_time: Option<Timestamp>,
    pub end_time: Option<Timestamp>,
}

A specification for a time range, this will request transfer runs with run_time between start_time (inclusive) and end_time (exclusive).

Fields

start_time: Option<Timestamp>

Start time of the range of transfer runs. For example, "2017-05-25T00:00:00+00:00". The start_time must be strictly less than the end_time. Creates transfer runs where run_time is in the range betwen start_time (inclusive) and end_time (exlusive).

end_time: Option<Timestamp>

End time of the range of transfer runs. For example, "2017-05-30T00:00:00+00:00". The end_time must not be in the future. Creates transfer runs where run_time is in the range betwen start_time (inclusive) and end_time (exlusive).

Trait Implementations

impl Clone for TimeRange[src]

impl Debug for TimeRange[src]

impl Default for TimeRange[src]

impl Message for TimeRange[src]

impl PartialEq<TimeRange> for TimeRange[src]

impl StructuralPartialEq for TimeRange[src]

Auto Trait Implementations

impl RefUnwindSafe for TimeRange

impl Send for TimeRange

impl Sync for TimeRange

impl Unpin for TimeRange

impl UnwindSafe for TimeRange

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]