pub struct PlanUpgrade {
pub args: Option<Vec<String>>,
pub command: Option<Vec<String>>,
pub env_from: Option<Vec<PlanUpgradeEnvFrom>>,
pub envs: Option<Vec<PlanUpgradeEnvs>>,
pub image: Option<String>,
pub volumes: Option<Vec<PlanUpgradeVolumes>>,
}Fields§
§args: Option<Vec<String>>§command: Option<Vec<String>>§env_from: Option<Vec<PlanUpgradeEnvFrom>>§envs: Option<Vec<PlanUpgradeEnvs>>§image: Option<String>§volumes: Option<Vec<PlanUpgradeVolumes>>Trait Implementations§
source§impl Clone for PlanUpgrade
impl Clone for PlanUpgrade
source§fn clone(&self) -> PlanUpgrade
fn clone(&self) -> PlanUpgrade
Returns a copy 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 PlanUpgrade
impl Debug for PlanUpgrade
source§impl Default for PlanUpgrade
impl Default for PlanUpgrade
source§fn default() -> PlanUpgrade
fn default() -> PlanUpgrade
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PlanUpgrade
impl<'de> Deserialize<'de> for PlanUpgrade
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 PartialEq for PlanUpgrade
impl PartialEq for PlanUpgrade
source§fn eq(&self, other: &PlanUpgrade) -> bool
fn eq(&self, other: &PlanUpgrade) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for PlanUpgrade
impl Serialize for PlanUpgrade
impl StructuralPartialEq for PlanUpgrade
Auto Trait Implementations§
impl RefUnwindSafe for PlanUpgrade
impl Send for PlanUpgrade
impl Sync for PlanUpgrade
impl Unpin for PlanUpgrade
impl UnwindSafe for PlanUpgrade
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