pub struct ReleaseUpdateByPipelineInputBase {
pub version: Option<String>,
pub stage: Option<String>,
}Fields§
§version: Option<String>The version of the release to update. If not provided, the latest started or latest planned release will be updated.
stage: Option<String>The stage name to set. First tries exact match, then falls back to case-insensitive matching with dashes/underscores treated as spaces.
Trait Implementations§
Source§impl Clone for ReleaseUpdateByPipelineInputBase
impl Clone for ReleaseUpdateByPipelineInputBase
Source§fn clone(&self) -> ReleaseUpdateByPipelineInputBase
fn clone(&self) -> ReleaseUpdateByPipelineInputBase
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 Default for ReleaseUpdateByPipelineInputBase
impl Default for ReleaseUpdateByPipelineInputBase
Source§fn default() -> ReleaseUpdateByPipelineInputBase
fn default() -> ReleaseUpdateByPipelineInputBase
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReleaseUpdateByPipelineInputBase
impl<'de> Deserialize<'de> for ReleaseUpdateByPipelineInputBase
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 ReleaseUpdateByPipelineInputBase
impl RefUnwindSafe for ReleaseUpdateByPipelineInputBase
impl Send for ReleaseUpdateByPipelineInputBase
impl Sync for ReleaseUpdateByPipelineInputBase
impl Unpin for ReleaseUpdateByPipelineInputBase
impl UnwindSafe for ReleaseUpdateByPipelineInputBase
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