pub struct AppConfig {
pub backend: Option<String>,
pub docker: Option<DockerConfig>,
pub dockerrun: Option<Object>,
pub health: Option<HealthConfig>,
pub kubernetes: Option<KubernetesConfig>,
pub kuberun: Option<Object>,
pub security: Option<SecurityConfig>,
pub sshproxy: Option<SshProxyConfig>,
}Expand description
goland:noinspection GoDeprecation
Fields§
§backend: Option<String>§docker: Option<DockerConfig>§dockerrun: Option<Object>DockerRun is a placeholder for the removed DockerRun backend. Filling this with anything but nil will yield a validation error.
health: Option<HealthConfig>§kubernetes: Option<KubernetesConfig>§kuberun: Option<Object>KubeRun is a placeholder for the removed DockerRun backend. Filling this with anything but nil will yield a validation error.
security: Option<SecurityConfig>§sshproxy: Option<SshProxyConfig>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AppConfig
impl<'de> Deserialize<'de> for AppConfig
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
Source§impl FromStr for AppConfig
Converts Query Parameters representation (style=form, explode=false) to a AppConfig value
as specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde deserializer
impl FromStr for AppConfig
Converts Query Parameters representation (style=form, explode=false) to a AppConfig value as specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde deserializer
Source§impl ToString for AppConfig
Converts the AppConfig value to the Query Parameters representation (style=form, explode=false)
specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde serializer
impl ToString for AppConfig
Converts the AppConfig value to the Query Parameters representation (style=form, explode=false) specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde serializer
Source§impl<'v_a> ValidateArgs<'v_a> for AppConfig
impl<'v_a> ValidateArgs<'v_a> for AppConfig
impl StructuralPartialEq for AppConfig
Auto Trait Implementations§
impl Freeze for AppConfig
impl RefUnwindSafe for AppConfig
impl Send for AppConfig
impl Sync for AppConfig
impl Unpin for AppConfig
impl UnwindSafe for AppConfig
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