pub struct PreheatPlanTarget {
pub target: TargetTriple,
pub root_cached: bool,
pub tasks: Vec<EnqueueRequest>,
}Expand description
One target’s enqueue plan inside PreheatPlanResponse.
Fields§
§target: TargetTripleCompilation target.
root_cached: boolWhether the requested crate already has a servable artifact here.
tasks: Vec<EnqueueRequest>Tasks the dispatch wave would enqueue. A task’s depends_on
names its own dependencies — the row dispatches once every dep is
servable — so tasks with an empty depends_on are the wave’s
roots.
Trait Implementations§
Source§impl Clone for PreheatPlanTarget
impl Clone for PreheatPlanTarget
Source§impl ComposeSchema for PreheatPlanTarget
impl ComposeSchema for PreheatPlanTarget
Source§impl Debug for PreheatPlanTarget
impl Debug for PreheatPlanTarget
Source§impl<'de> Deserialize<'de> for PreheatPlanTarget
impl<'de> Deserialize<'de> for PreheatPlanTarget
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 PreheatPlanTarget
Source§impl PartialEq for PreheatPlanTarget
impl PartialEq for PreheatPlanTarget
Source§impl Serialize for PreheatPlanTarget
impl Serialize for PreheatPlanTarget
impl StructuralPartialEq for PreheatPlanTarget
Auto Trait Implementations§
impl Freeze for PreheatPlanTarget
impl RefUnwindSafe for PreheatPlanTarget
impl Send for PreheatPlanTarget
impl Sync for PreheatPlanTarget
impl Unpin for PreheatPlanTarget
impl UnsafeUnpin for PreheatPlanTarget
impl UnwindSafe for PreheatPlanTarget
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.