pub struct ExportModel {
pub project: ExportProject,
pub services: Vec<ExportService>,
pub export: Option<ExportConfig>,
}Expand description
Target-agnostic model of a stack ready to be emitted.
Fields§
§project: ExportProjectProject metadata carried from the manifest.
services: Vec<ExportService>Services in manifest declaration order.
export: Option<ExportConfig>Raw export: section, resolved per target by each emitter.
Trait Implementations§
Source§impl Clone for ExportModel
impl Clone for ExportModel
Source§fn clone(&self) -> ExportModel
fn clone(&self) -> ExportModel
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 moreAuto Trait Implementations§
impl Freeze for ExportModel
impl RefUnwindSafe for ExportModel
impl Send for ExportModel
impl Sync for ExportModel
impl Unpin for ExportModel
impl UnsafeUnpin for ExportModel
impl UnwindSafe for ExportModel
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