pub struct CrateBuildTargets {
pub id: BuildId,
pub binary: String,
pub targets: Vec<String>,
}Expand description
One planned build entry’s static identity + the target triples it
contributes, as resolved by crate_build_target_entries.
Fields§
§id: BuildId§binary: StringThe binary the entry compiles: its binary:, else the crate’s own
[[bin]] name. Unrendered — a binary: that is itself a template must
be rendered before it is compared or displayed, the same way
BuildId::BinaryFallback must.
targets: Vec<String>Auto Trait Implementations§
impl Freeze for CrateBuildTargets
impl RefUnwindSafe for CrateBuildTargets
impl Send for CrateBuildTargets
impl Sync for CrateBuildTargets
impl Unpin for CrateBuildTargets
impl UnsafeUnpin for CrateBuildTargets
impl UnwindSafe for CrateBuildTargets
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