pub struct LinkFailure {
pub package: String,
pub target: String,
}Expand description
Parsed picture of one failing link action. Only the first failure ninja reports is extracted; secondary failures in a parallel build are not surfaced (the user fixes one, re-runs, gets the next).
Fields§
§package: StringPackage name owning the target, derived from the
/packages/<package>/ segment cabin’s planner embeds in
every output path.
target: StringTarget name - the binary or library that failed to link.
Trait Implementations§
Source§impl Clone for LinkFailure
impl Clone for LinkFailure
Source§fn clone(&self) -> LinkFailure
fn clone(&self) -> LinkFailure
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LinkFailure
impl Debug for LinkFailure
impl Eq for LinkFailure
Source§impl PartialEq for LinkFailure
impl PartialEq for LinkFailure
Source§fn eq(&self, other: &LinkFailure) -> bool
fn eq(&self, other: &LinkFailure) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LinkFailure
Auto Trait Implementations§
impl Freeze for LinkFailure
impl RefUnwindSafe for LinkFailure
impl Send for LinkFailure
impl Sync for LinkFailure
impl Unpin for LinkFailure
impl UnsafeUnpin for LinkFailure
impl UnwindSafe for LinkFailure
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,
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.