pub struct TargetEntry {
pub tuple: &'static str,
pub tier: Tier,
pub planned: Tier,
pub host: Host,
pub note: &'static str,
}Expand description
One row of the target table.
Fields§
§tuple: &'static strThe canonical spelling. Every entry parses back to itself, which the tests check, because a table whose keys are not canonical is a cache with two entries per target.
tier: TierWhat the last reporting run established.
planned: TierWhat the plan in spec/cross-compile/15-plan.md commits to.
host: HostWhether rucc runs on this target.
note: &'static strWhy this row is in the table, or what makes it awkward. Taken from the spec.
Implementations§
Source§impl TargetEntry
impl TargetEntry
Trait Implementations§
Source§impl Clone for TargetEntry
impl Clone for TargetEntry
Source§fn clone(&self) -> TargetEntry
fn clone(&self) -> TargetEntry
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 moreimpl Copy for TargetEntry
Source§impl Debug for TargetEntry
impl Debug for TargetEntry
impl Eq for TargetEntry
Source§impl PartialEq for TargetEntry
impl PartialEq for TargetEntry
impl StructuralPartialEq for TargetEntry
Auto Trait Implementations§
impl Freeze for TargetEntry
impl RefUnwindSafe for TargetEntry
impl Send for TargetEntry
impl Sync for TargetEntry
impl Unpin for TargetEntry
impl UnsafeUnpin for TargetEntry
impl UnwindSafe for TargetEntry
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