pub struct ExportResult {
pub project: String,
pub file: String,
pub bytes: u64,
pub scope: ExportScope,
}Expand description
ign project export output model: {project, file, bytes, scope}
— the FILE is the artifact; stdout stays data-only.
Fields§
§project: StringThe exported project’s name.
file: StringPath of the file written (the -o value, or the resolved
default name).
bytes: u64Bytes streamed to disk (chunk-counted).
scope: ExportScopeWhat the ZIP does and does not contain (roadmap criterion 4).
Trait Implementations§
Source§impl Debug for ExportResult
impl Debug for ExportResult
Auto Trait Implementations§
impl Freeze for ExportResult
impl RefUnwindSafe for ExportResult
impl Send for ExportResult
impl Sync for ExportResult
impl Unpin for ExportResult
impl UnsafeUnpin for ExportResult
impl UnwindSafe for ExportResult
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