pub struct ComposerOutput {
pub consumed_env: HashMap<String, String>,
pub missing_env: Vec<String>,
pub exposed_ports: Vec<PortMapping>,
pub volumes: Vec<VolumeMapping>,
pub local_references: Vec<PathBuf>,
pub resolved_compose_files: Vec<PathBuf>,
pub resolved_project_dir: PathBuf,
pub resolved_env_files: Vec<PathBuf>,
pub available_profiles: Vec<String>,
pub active_profiles: Vec<String>,
}Fields§
§consumed_env: HashMap<String, String>§missing_env: Vec<String>§exposed_ports: Vec<PortMapping>§volumes: Vec<VolumeMapping>§local_references: Vec<PathBuf>§resolved_compose_files: Vec<PathBuf>§resolved_project_dir: PathBuf§resolved_env_files: Vec<PathBuf>§available_profiles: Vec<String>§active_profiles: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for ComposerOutput
impl Clone for ComposerOutput
Source§fn clone(&self) -> ComposerOutput
fn clone(&self) -> ComposerOutput
Returns a copy of the value. Read more
1.0.0 · 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 ComposerOutput
impl Debug for ComposerOutput
Auto Trait Implementations§
impl Freeze for ComposerOutput
impl RefUnwindSafe for ComposerOutput
impl Send for ComposerOutput
impl Sync for ComposerOutput
impl Unpin for ComposerOutput
impl UnwindSafe for ComposerOutput
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