#[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
sourceimpl 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.
sourcepub fn schedule_expression(&self) -> Option<&str>
pub fn schedule_expression(&self) -> Option<&str>
How often the data should be pulled from data source.
sourceimpl ScheduleConfiguration
impl ScheduleConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ScheduleConfiguration
.
Trait Implementations
sourceimpl Clone for ScheduleConfiguration
impl Clone for ScheduleConfiguration
sourcefn clone(&self) -> ScheduleConfiguration
fn clone(&self) -> ScheduleConfiguration
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ScheduleConfiguration
impl Debug for ScheduleConfiguration
sourceimpl PartialEq<ScheduleConfiguration> for ScheduleConfiguration
impl PartialEq<ScheduleConfiguration> for ScheduleConfiguration
sourcefn eq(&self, other: &ScheduleConfiguration) -> bool
fn eq(&self, other: &ScheduleConfiguration) -> bool
impl StructuralPartialEq for ScheduleConfiguration
Auto Trait Implementations
impl RefUnwindSafe for ScheduleConfiguration
impl Send for ScheduleConfiguration
impl Sync for ScheduleConfiguration
impl Unpin for ScheduleConfiguration
impl UnwindSafe for ScheduleConfiguration
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more