[][src]Struct google_storagetransfer1::Schedule

pub struct Schedule {
    pub schedule_start_date: Option<Date>,
    pub start_time_of_day: Option<TimeOfDay>,
    pub schedule_end_date: Option<Date>,
}

Transfers can be scheduled to recur or to run just once.

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

Fields

schedule_start_date: Option<Date>

Required. The first day the recurring transfer is scheduled to run. If scheduleStartDate is in the past, the transfer will run for the first time on the following day.

start_time_of_day: Option<TimeOfDay>

The time in UTC at which the transfer will be scheduled to start in a day. Transfers may start later than this time. If not specified, recurring and one-time transfers that are scheduled to run today will run immediately; recurring transfers that are scheduled to run on a future date will start at approximately midnight UTC on that date. Note that when configuring a transfer with the Cloud Platform Console, the transfer's start time in a day is specified in your local timezone.

schedule_end_date: Option<Date>

The last day the recurring transfer will be run. If scheduleEndDate is the same as scheduleStartDate, the transfer will be executed only once.

Trait Implementations

impl Part for Schedule[src]

impl Clone for Schedule[src]

impl Default for Schedule[src]

impl Debug for Schedule[src]

impl Serialize for Schedule[src]

impl<'de> Deserialize<'de> for Schedule[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<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 = !

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]