pub struct ArchiveJob {
pub members: Vec<String>,
pub output: String,
}Expand description
The archive step, when there is one.
Fields§
§members: Vec<String>What the members are called inside the archive, in command line order.
Command line order is the order they are written in, which is the stated order
spec/cross-compile/13-distribution.md section 13.6 asks for: the caller chose it and the
same command line produces the same archive. The names are the object file names, because
that is what ar t over anybody else’s archive shows.
output: StringThe archive.
Trait Implementations§
Source§impl Clone for ArchiveJob
impl Clone for ArchiveJob
Source§fn clone(&self) -> ArchiveJob
fn clone(&self) -> ArchiveJob
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 ArchiveJob
impl Debug for ArchiveJob
impl Eq for ArchiveJob
Source§impl PartialEq for ArchiveJob
impl PartialEq for ArchiveJob
impl StructuralPartialEq for ArchiveJob
Auto Trait Implementations§
impl Freeze for ArchiveJob
impl RefUnwindSafe for ArchiveJob
impl Send for ArchiveJob
impl Sync for ArchiveJob
impl Unpin for ArchiveJob
impl UnsafeUnpin for ArchiveJob
impl UnwindSafe for ArchiveJob
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.