pub struct ProcessConfig {
pub cmd: Option<Vec<String>>,
pub entrypoint: Option<Vec<String>>,
pub env: Option<HashMap<String, String>>,
pub env_from: Option<Vec<EnvVarConfig>>,
pub exec: Option<Vec<String>>,
pub ignore_app_secrets: Option<bool>,
pub secrets: Option<Vec<SecretConfig>>,
pub user: Option<String>,
}Fields§
§cmd: Option<Vec<String>>§entrypoint: Option<Vec<String>>§env: Option<HashMap<String, String>>§env_from: Option<Vec<EnvVarConfig>>§exec: Option<Vec<String>>§ignore_app_secrets: Option<bool>§secrets: Option<Vec<SecretConfig>>§user: Option<String>Trait Implementations§
Source§impl Debug for ProcessConfig
impl Debug for ProcessConfig
Source§impl<'de> Deserialize<'de> for ProcessConfig
impl<'de> Deserialize<'de> for ProcessConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ProcessConfig
impl RefUnwindSafe for ProcessConfig
impl Send for ProcessConfig
impl Sync for ProcessConfig
impl Unpin for ProcessConfig
impl UnwindSafe for ProcessConfig
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