pub struct ComposedRuntime {
pub env: BTreeMap<String, String>,
pub config_mounts: Vec<ConfigFileMount>,
pub container_port: Option<u16>,
pub loaded_env_files: Vec<PathBuf>,
pub missing_required: Vec<String>,
}Expand description
Result of composing env + config for one service in one deploy env.
Fields§
§env: BTreeMap<String, String>§config_mounts: Vec<ConfigFileMount>§container_port: Option<u16>§loaded_env_files: Vec<PathBuf>§missing_required: Vec<String>Trait Implementations§
Source§impl Clone for ComposedRuntime
impl Clone for ComposedRuntime
Source§fn clone(&self) -> ComposedRuntime
fn clone(&self) -> ComposedRuntime
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 ComposedRuntime
impl Debug for ComposedRuntime
Source§impl Default for ComposedRuntime
impl Default for ComposedRuntime
Source§fn default() -> ComposedRuntime
fn default() -> ComposedRuntime
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ComposedRuntime
impl RefUnwindSafe for ComposedRuntime
impl Send for ComposedRuntime
impl Sync for ComposedRuntime
impl Unpin for ComposedRuntime
impl UnsafeUnpin for ComposedRuntime
impl UnwindSafe for ComposedRuntime
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