pub struct KubernetesConfig {
pub connection: Option<KubernetesConnectionConfig>,
pub pod: Option<KubernetesPodConfig>,
pub timeouts: Option<KubernetesTimeoutConfig>,
}Expand description
KubernetesConfig is the base configuration structure for Kubernetes
Fields§
§connection: Option<KubernetesConnectionConfig>§pod: Option<KubernetesPodConfig>§timeouts: Option<KubernetesTimeoutConfig>Implementations§
Source§impl KubernetesConfig
impl KubernetesConfig
pub fn new() -> KubernetesConfig
Trait Implementations§
Source§impl Clone for KubernetesConfig
impl Clone for KubernetesConfig
Source§fn clone(&self) -> KubernetesConfig
fn clone(&self) -> KubernetesConfig
Returns a duplicate 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 KubernetesConfig
impl Debug for KubernetesConfig
Source§impl<'de> Deserialize<'de> for KubernetesConfig
impl<'de> Deserialize<'de> for KubernetesConfig
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 KubernetesConfig
Converts Query Parameters representation (style=form, explode=false) to a KubernetesConfig value
as specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde deserializer
impl FromStr for KubernetesConfig
Converts Query Parameters representation (style=form, explode=false) to a KubernetesConfig value as specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde deserializer
Source§impl PartialEq for KubernetesConfig
impl PartialEq for KubernetesConfig
Source§impl Serialize for KubernetesConfig
impl Serialize for KubernetesConfig
Source§impl ToString for KubernetesConfig
Converts the KubernetesConfig 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 KubernetesConfig
Converts the KubernetesConfig 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 Validate for KubernetesConfig
impl Validate for KubernetesConfig
Source§impl<'v_a> ValidateArgs<'v_a> for KubernetesConfig
impl<'v_a> ValidateArgs<'v_a> for KubernetesConfig
impl StructuralPartialEq for KubernetesConfig
Auto Trait Implementations§
impl Freeze for KubernetesConfig
impl RefUnwindSafe for KubernetesConfig
impl Send for KubernetesConfig
impl Sync for KubernetesConfig
impl Unpin for KubernetesConfig
impl UnwindSafe for KubernetesConfig
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