pub struct ReleaseCompleteInputBase {
pub version: Option<String>,
pub commit_sha: Option<String>,
}Fields§
§version: Option<String>The version of the release to complete. If not provided, the latest started release will be completed.
commit_sha: Option<String>The commit SHA associated with this completion. If a completed release with this SHA already exists, it will be returned instead of completing a new release.
Trait Implementations§
Source§impl Clone for ReleaseCompleteInputBase
impl Clone for ReleaseCompleteInputBase
Source§fn clone(&self) -> ReleaseCompleteInputBase
fn clone(&self) -> ReleaseCompleteInputBase
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 ReleaseCompleteInputBase
impl Debug for ReleaseCompleteInputBase
Source§impl Default for ReleaseCompleteInputBase
impl Default for ReleaseCompleteInputBase
Source§fn default() -> ReleaseCompleteInputBase
fn default() -> ReleaseCompleteInputBase
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReleaseCompleteInputBase
impl<'de> Deserialize<'de> for ReleaseCompleteInputBase
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 ReleaseCompleteInputBase
impl RefUnwindSafe for ReleaseCompleteInputBase
impl Send for ReleaseCompleteInputBase
impl Sync for ReleaseCompleteInputBase
impl Unpin for ReleaseCompleteInputBase
impl UnwindSafe for ReleaseCompleteInputBase
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