pub struct PatchScheduleRequest {
pub cron_expr: Option<String>,
pub timezone: Option<String>,
pub input: Option<Value>,
pub task_queue: Option<String>,
pub overlap_policy: Option<String>,
}Fields§
§cron_expr: Option<String>New cron expression (leave null to keep the existing one).
timezone: Option<String>New IANA timezone (e.g. “Europe/Berlin”; leave null to keep).
input: Option<Value>New JSON input passed to each workflow run. Send null literally
to preserve; use {} to pass an empty object.
task_queue: Option<String>New task queue for created workflows.
overlap_policy: Option<String>New overlap policy (skip, queue, cancel_old, allow_all).
Trait Implementations§
Source§impl ComposeSchema for PatchScheduleRequest
impl ComposeSchema for PatchScheduleRequest
Source§impl<'de> Deserialize<'de> for PatchScheduleRequest
impl<'de> Deserialize<'de> for PatchScheduleRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PatchScheduleRequest
impl RefUnwindSafe for PatchScheduleRequest
impl Send for PatchScheduleRequest
impl Sync for PatchScheduleRequest
impl Unpin for PatchScheduleRequest
impl UnsafeUnpin for PatchScheduleRequest
impl UnwindSafe for PatchScheduleRequest
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more