Struct google_storagetransfer1::Schedule [] [src]

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

The first day the recurring transfer is scheduled to run. Required.

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, transfers are scheduled to start at midnight UTC.

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 Debug for Schedule
[src]

Formats the value using the given formatter.

impl Clone for Schedule
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Schedule
[src]

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

impl Part for Schedule
[src]