pub struct JobPlanResponse {
pub job_modify_index: Option<i32>,
pub created_evals: Option<Vec<Evaluation>>,
pub diff: Option<Box<JobDiff>>,
pub annotations: Option<Box<PlanAnnotations>>,
pub failed_tg_allocs: Option<HashMap<String, AllocationMetric>>,
pub next_periodic_launch: Option<String>,
pub warnings: Option<String>,
}
Fields§
§job_modify_index: Option<i32>
§created_evals: Option<Vec<Evaluation>>
§diff: Option<Box<JobDiff>>
§annotations: Option<Box<PlanAnnotations>>
§failed_tg_allocs: Option<HashMap<String, AllocationMetric>>
§next_periodic_launch: Option<String>
§warnings: Option<String>
Implementations§
Source§impl JobPlanResponse
impl JobPlanResponse
pub fn new() -> JobPlanResponse
Trait Implementations§
Source§impl Clone for JobPlanResponse
impl Clone for JobPlanResponse
Source§fn clone(&self) -> JobPlanResponse
fn clone(&self) -> JobPlanResponse
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 JobPlanResponse
impl Debug for JobPlanResponse
Source§impl<'de> Deserialize<'de> for JobPlanResponse
impl<'de> Deserialize<'de> for JobPlanResponse
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 JobPlanResponse
impl PartialEq for JobPlanResponse
Source§impl Serialize for JobPlanResponse
impl Serialize for JobPlanResponse
impl StructuralPartialEq for JobPlanResponse
Auto Trait Implementations§
impl Freeze for JobPlanResponse
impl RefUnwindSafe for JobPlanResponse
impl Send for JobPlanResponse
impl Sync for JobPlanResponse
impl Unpin for JobPlanResponse
impl UnwindSafe for JobPlanResponse
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