#[non_exhaustive]pub struct UpdateCrawlerScheduleInput {
pub crawler_name: Option<String>,
pub schedule: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.crawler_name: Option<String>The name of the crawler whose schedule to update.
schedule: Option<String>The updated cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).
Implementations§
source§impl UpdateCrawlerScheduleInput
impl UpdateCrawlerScheduleInput
sourcepub fn crawler_name(&self) -> Option<&str>
pub fn crawler_name(&self) -> Option<&str>
The name of the crawler whose schedule to update.
sourcepub fn schedule(&self) -> Option<&str>
pub fn schedule(&self) -> Option<&str>
The updated cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).
source§impl UpdateCrawlerScheduleInput
impl UpdateCrawlerScheduleInput
sourcepub fn builder() -> UpdateCrawlerScheduleInputBuilder
pub fn builder() -> UpdateCrawlerScheduleInputBuilder
Creates a new builder-style object to manufacture UpdateCrawlerScheduleInput.
Trait Implementations§
source§impl Clone for UpdateCrawlerScheduleInput
impl Clone for UpdateCrawlerScheduleInput
source§fn clone(&self) -> UpdateCrawlerScheduleInput
fn clone(&self) -> UpdateCrawlerScheduleInput
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 UpdateCrawlerScheduleInput
impl Debug for UpdateCrawlerScheduleInput
source§impl PartialEq<UpdateCrawlerScheduleInput> for UpdateCrawlerScheduleInput
impl PartialEq<UpdateCrawlerScheduleInput> for UpdateCrawlerScheduleInput
source§fn eq(&self, other: &UpdateCrawlerScheduleInput) -> bool
fn eq(&self, other: &UpdateCrawlerScheduleInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateCrawlerScheduleInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateCrawlerScheduleInput
impl Send for UpdateCrawlerScheduleInput
impl Sync for UpdateCrawlerScheduleInput
impl Unpin for UpdateCrawlerScheduleInput
impl UnwindSafe for UpdateCrawlerScheduleInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more