pub struct RecommendationApplyResponse {
pub updated_jobs: Vec<SingleRecommendationApplyResult>,
pub errors: Vec<SingleRecommendationApplyError>,
}
Expand description
RecommendationApplyResponse is used to apply a set of recommendations
This struct was generated based on the Go types of the official Nomad API client.
Fields§
§updated_jobs: Vec<SingleRecommendationApplyResult>
§errors: Vec<SingleRecommendationApplyError>
Implementations§
Trait Implementations§
Source§impl Clone for RecommendationApplyResponse
impl Clone for RecommendationApplyResponse
Source§fn clone(&self) -> RecommendationApplyResponse
fn clone(&self) -> RecommendationApplyResponse
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 RecommendationApplyResponse
impl Debug for RecommendationApplyResponse
Source§impl<'de> Deserialize<'de> for RecommendationApplyResponse
impl<'de> Deserialize<'de> for RecommendationApplyResponse
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
impl StructuralPartialEq for RecommendationApplyResponse
Auto Trait Implementations§
impl Freeze for RecommendationApplyResponse
impl RefUnwindSafe for RecommendationApplyResponse
impl Send for RecommendationApplyResponse
impl Sync for RecommendationApplyResponse
impl Unpin for RecommendationApplyResponse
impl UnwindSafe for RecommendationApplyResponse
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