pub struct ServiceDeployEnvView {
pub namespace: Option<String>,
pub replicas: Option<u32>,
pub health: Vec<String>,
pub kubernetes: Option<ServiceK8sView>,
}Fields§
§namespace: Option<String>§replicas: Option<u32>§health: Vec<String>§kubernetes: Option<ServiceK8sView>Trait Implementations§
Source§impl Clone for ServiceDeployEnvView
impl Clone for ServiceDeployEnvView
Source§fn clone(&self) -> ServiceDeployEnvView
fn clone(&self) -> ServiceDeployEnvView
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 ServiceDeployEnvView
impl Debug for ServiceDeployEnvView
Source§impl<'de> Deserialize<'de> for ServiceDeployEnvView
impl<'de> Deserialize<'de> for ServiceDeployEnvView
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 ServiceDeployEnvView
impl RefUnwindSafe for ServiceDeployEnvView
impl Send for ServiceDeployEnvView
impl Sync for ServiceDeployEnvView
impl Unpin for ServiceDeployEnvView
impl UnsafeUnpin for ServiceDeployEnvView
impl UnwindSafe for ServiceDeployEnvView
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