pub struct Build {
pub rule: RuleId,
pub explicits: BTreeSet<FileName>,
pub implicits: BTreeSet<FileName>,
pub order: BTreeSet<FileName>,
pub dyndep: Option<FileName>,
pub shadow: BTreeMap<VariableId, Variable>,
}
Fields§
§rule: RuleId
§explicits: BTreeSet<FileName>
§implicits: BTreeSet<FileName>
§order: BTreeSet<FileName>
§dyndep: Option<FileName>
§shadow: BTreeMap<VariableId, Variable>
Trait Implementations§
Source§impl From<Build> for BuildBuilder
impl From<Build> for BuildBuilder
Source§fn from(_: Build) -> BuildBuilder
fn from(_: Build) -> BuildBuilder
Converts to this type from the input type.
Source§impl Ord for Build
impl Ord for Build
Source§impl PartialOrd for Build
impl PartialOrd for Build
impl Eq for Build
impl StructuralPartialEq for Build
Auto Trait Implementations§
impl Freeze for Build
impl RefUnwindSafe for Build
impl Send for Build
impl Sync for Build
impl Unpin for Build
impl UnwindSafe for Build
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