pub enum BuildAction {
Compile(CompileAction),
Archive(ArchiveAction),
Link(LinkAction),
}Expand description
A single semantic build step: compile a translation unit, archive objects into a static library, or link an executable.
Backend- and toolchain-independent: the concrete command argv is
produced later by crate::lower(), not stored here.
Variants§
Compile(CompileAction)
Compile (or syntax-check) one C/C++ translation unit.
Archive(ArchiveAction)
Archive object files into a static library.
Link(LinkAction)
Link object files and static archives into an executable.
Trait Implementations§
Source§impl Clone for BuildAction
impl Clone for BuildAction
Source§fn clone(&self) -> BuildAction
fn clone(&self) -> BuildAction
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 BuildAction
impl Debug for BuildAction
impl Eq for BuildAction
Source§impl PartialEq for BuildAction
impl PartialEq for BuildAction
Source§fn eq(&self, other: &BuildAction) -> bool
fn eq(&self, other: &BuildAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BuildAction
Auto Trait Implementations§
impl Freeze for BuildAction
impl RefUnwindSafe for BuildAction
impl Send for BuildAction
impl Sync for BuildAction
impl Unpin for BuildAction
impl UnsafeUnpin for BuildAction
impl UnwindSafe for BuildAction
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.