pub struct AdminResolveResponse {
pub has_binary: bool,
pub has_library: bool,
pub ships_lockfile: bool,
pub targets: Vec<AdminResolveTarget>,
}Expand description
Response of the admin resolve endpoints: publish-shape flags plus the task batch per requested target.
Fields§
§has_binary: boolWhether the resolved source ships a [[bin]] target — the binaries
lane’s skip condition, read from cargo’s own target knowledge.
has_library: boolWhether the resolved root package ships a library target.
ships_lockfile: boolWhether the resolved source shipped a Cargo.lock the resolve
honored — kept for the lane’s log line.
targets: Vec<AdminResolveTarget>One task batch per requested target, in request order.
Trait Implementations§
Source§impl Clone for AdminResolveResponse
impl Clone for AdminResolveResponse
Source§impl ComposeSchema for AdminResolveResponse
impl ComposeSchema for AdminResolveResponse
Source§impl Debug for AdminResolveResponse
impl Debug for AdminResolveResponse
Source§impl<'de> Deserialize<'de> for AdminResolveResponse
impl<'de> Deserialize<'de> for AdminResolveResponse
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 AdminResolveResponse
Source§impl PartialEq for AdminResolveResponse
impl PartialEq for AdminResolveResponse
Source§impl Serialize for AdminResolveResponse
impl Serialize for AdminResolveResponse
impl StructuralPartialEq for AdminResolveResponse
Auto Trait Implementations§
impl Freeze for AdminResolveResponse
impl RefUnwindSafe for AdminResolveResponse
impl Send for AdminResolveResponse
impl Sync for AdminResolveResponse
impl Unpin for AdminResolveResponse
impl UnsafeUnpin for AdminResolveResponse
impl UnwindSafe for AdminResolveResponse
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.