#[non_exhaustive]pub struct ScheduleConfiguration { /* private fields */ }
Expand description
The name of the data and how often it should be pulled from the source.
Implementations§
source§impl ScheduleConfiguration
impl ScheduleConfiguration
sourcepub fn first_execution_from(&self) -> Option<&str>
pub fn first_execution_from(&self) -> Option<&str>
The start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format.
sourcepub fn schedule_expression(&self) -> Option<&str>
pub fn schedule_expression(&self) -> Option<&str>
How often the data should be pulled from data source.
source§impl ScheduleConfiguration
impl ScheduleConfiguration
sourcepub fn builder() -> ScheduleConfigurationBuilder
pub fn builder() -> ScheduleConfigurationBuilder
Creates a new builder-style object to manufacture ScheduleConfiguration
.
Trait Implementations§
source§impl Clone for ScheduleConfiguration
impl Clone for ScheduleConfiguration
source§fn clone(&self) -> ScheduleConfiguration
fn clone(&self) -> ScheduleConfiguration
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ScheduleConfiguration
impl Debug for ScheduleConfiguration
source§impl PartialEq<ScheduleConfiguration> for ScheduleConfiguration
impl PartialEq<ScheduleConfiguration> for ScheduleConfiguration
source§fn eq(&self, other: &ScheduleConfiguration) -> bool
fn eq(&self, other: &ScheduleConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.