pub struct CreateJobPlanResponse {
pub job_modify_index: u64,
pub annotations: PlanAnnotations,
pub diff: JobDiff,
pub next_periodic_launch: Option<Duration>,
pub warnings: String,
}Expand description
The request to create the plan to create or update a job.
Fields§
§job_modify_index: u64The modify index of the job.
annotations: PlanAnnotationsAnnotations for the generated plan.
diff: JobDiffThe difference report for the deployed job.
next_periodic_launch: Option<Duration>The next launch of this periodic job, if it is one.
warnings: StringContains any warnings about the given job. These may include deprecation warnings.
Trait Implementations§
Source§impl Clone for CreateJobPlanResponse
impl Clone for CreateJobPlanResponse
Source§fn clone(&self) -> CreateJobPlanResponse
fn clone(&self) -> CreateJobPlanResponse
Returns a duplicate 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 CreateJobPlanResponse
impl Debug for CreateJobPlanResponse
Source§impl<'de> Deserialize<'de> for CreateJobPlanResponse
impl<'de> Deserialize<'de> for CreateJobPlanResponse
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
Source§impl PartialEq for CreateJobPlanResponse
impl PartialEq for CreateJobPlanResponse
Source§impl Serialize for CreateJobPlanResponse
impl Serialize for CreateJobPlanResponse
impl Eq for CreateJobPlanResponse
impl StructuralPartialEq for CreateJobPlanResponse
Auto Trait Implementations§
impl Freeze for CreateJobPlanResponse
impl RefUnwindSafe for CreateJobPlanResponse
impl Send for CreateJobPlanResponse
impl Sync for CreateJobPlanResponse
impl Unpin for CreateJobPlanResponse
impl UnwindSafe for CreateJobPlanResponse
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.