pub struct PlanUpdateOptions {
pub target_version: Option<String>,
pub assets: Option<Vec<AssetInfo>>,
}Expand description
Options for plan_update.
Fields§
§target_version: Option<String>Override the target version. When set, plans for this version instead of status.latest.
assets: Option<Vec<AssetInfo>>Release assets for native-in-place strategy.
Trait Implementations§
Source§impl Clone for PlanUpdateOptions
impl Clone for PlanUpdateOptions
Source§fn clone(&self) -> PlanUpdateOptions
fn clone(&self) -> PlanUpdateOptions
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 PlanUpdateOptions
impl Debug for PlanUpdateOptions
Source§impl Default for PlanUpdateOptions
impl Default for PlanUpdateOptions
Source§fn default() -> PlanUpdateOptions
fn default() -> PlanUpdateOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PlanUpdateOptions
impl RefUnwindSafe for PlanUpdateOptions
impl Send for PlanUpdateOptions
impl Sync for PlanUpdateOptions
impl Unpin for PlanUpdateOptions
impl UnsafeUnpin for PlanUpdateOptions
impl UnwindSafe for PlanUpdateOptions
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