pub struct ServiceDeployPlan {
pub namespace: Option<String>,
pub workload: Option<String>,
pub health: Vec<String>,
pub manifest_paths: Vec<PathBuf>,
pub crds_path: Option<PathBuf>,
pub install_path: Option<PathBuf>,
pub selector: Option<String>,
pub actions: Vec<String>,
}Fields§
§namespace: Option<String>§workload: Option<String>§health: Vec<String>§manifest_paths: Vec<PathBuf>§crds_path: Option<PathBuf>§install_path: Option<PathBuf>§selector: Option<String>§actions: Vec<String>Trait Implementations§
Source§impl Clone for ServiceDeployPlan
impl Clone for ServiceDeployPlan
Source§fn clone(&self) -> ServiceDeployPlan
fn clone(&self) -> ServiceDeployPlan
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 ServiceDeployPlan
impl Debug for ServiceDeployPlan
Source§impl<'de> Deserialize<'de> for ServiceDeployPlan
impl<'de> Deserialize<'de> for ServiceDeployPlan
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 ServiceDeployPlan
impl RefUnwindSafe for ServiceDeployPlan
impl Send for ServiceDeployPlan
impl Sync for ServiceDeployPlan
impl Unpin for ServiceDeployPlan
impl UnsafeUnpin for ServiceDeployPlan
impl UnwindSafe for ServiceDeployPlan
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