pub struct PreheatPlanResponse {
pub crate_name: CrateName,
pub version: CrateVersion,
pub rustc_version: WireRustcVersion,
pub targets: Vec<PreheatPlanTarget>,
}Expand description
Response of POST /api/v1/admin/preheat/plan.
Fields§
§crate_name: CrateNameCrate the plan was computed for.
version: CrateVersionVersion the request resolved to.
rustc_version: WireRustcVersionRustc version the plan was computed for.
targets: Vec<PreheatPlanTarget>One plan per resolved target, in CI_TARGET_TRIPLES order.
Trait Implementations§
Source§impl Clone for PreheatPlanResponse
impl Clone for PreheatPlanResponse
Source§impl ComposeSchema for PreheatPlanResponse
impl ComposeSchema for PreheatPlanResponse
Source§impl Debug for PreheatPlanResponse
impl Debug for PreheatPlanResponse
Source§impl<'de> Deserialize<'de> for PreheatPlanResponse
impl<'de> Deserialize<'de> for PreheatPlanResponse
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 Eq for PreheatPlanResponse
Source§impl PartialEq for PreheatPlanResponse
impl PartialEq for PreheatPlanResponse
Source§impl Serialize for PreheatPlanResponse
impl Serialize for PreheatPlanResponse
impl StructuralPartialEq for PreheatPlanResponse
Auto Trait Implementations§
impl Freeze for PreheatPlanResponse
impl RefUnwindSafe for PreheatPlanResponse
impl Send for PreheatPlanResponse
impl Sync for PreheatPlanResponse
impl Unpin for PreheatPlanResponse
impl UnsafeUnpin for PreheatPlanResponse
impl UnwindSafe for PreheatPlanResponse
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.