pub struct ExportArtifacts {
pub files: Vec<ExportFile>,
}Expand description
A set of named files produced by an emitter, written to disk by the CLI.
Fields§
§files: Vec<ExportFile>Files in deterministic emission order.
Implementations§
Trait Implementations§
Source§impl Clone for ExportArtifacts
impl Clone for ExportArtifacts
Source§fn clone(&self) -> ExportArtifacts
fn clone(&self) -> ExportArtifacts
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 ExportArtifacts
impl Debug for ExportArtifacts
Source§impl Default for ExportArtifacts
impl Default for ExportArtifacts
Source§fn default() -> ExportArtifacts
fn default() -> ExportArtifacts
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ExportArtifacts
impl RefUnwindSafe for ExportArtifacts
impl Send for ExportArtifacts
impl Sync for ExportArtifacts
impl Unpin for ExportArtifacts
impl UnsafeUnpin for ExportArtifacts
impl UnwindSafe for ExportArtifacts
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