pub struct ReleaseStageCreateInput {
pub id: Option<String>,
pub name: Option<String>,
pub color: Option<String>,
pub type: Option<ReleaseStageType>,
pub position: Option<f64>,
pub pipeline_id: Option<String>,
}Fields§
§id: Option<String>The identifier in UUID v4 format. If none is provided, the backend will generate one.
name: Option<String>The name of the stage.
color: Option<String>The UI color of the stage as a HEX string.
type: Option<ReleaseStageType>The type of the stage.
position: Option<f64>The position of the stage.
pipeline_id: Option<String>The identifier of the pipeline this stage belongs to.
Trait Implementations§
Source§impl Clone for ReleaseStageCreateInput
impl Clone for ReleaseStageCreateInput
Source§fn clone(&self) -> ReleaseStageCreateInput
fn clone(&self) -> ReleaseStageCreateInput
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 ReleaseStageCreateInput
impl Debug for ReleaseStageCreateInput
Source§impl Default for ReleaseStageCreateInput
impl Default for ReleaseStageCreateInput
Source§fn default() -> ReleaseStageCreateInput
fn default() -> ReleaseStageCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReleaseStageCreateInput
impl<'de> Deserialize<'de> for ReleaseStageCreateInput
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 ReleaseStageCreateInput
impl RefUnwindSafe for ReleaseStageCreateInput
impl Send for ReleaseStageCreateInput
impl Sync for ReleaseStageCreateInput
impl Unpin for ReleaseStageCreateInput
impl UnwindSafe for ReleaseStageCreateInput
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