pub struct ReleasePipelineCreateInput {
pub id: Option<String>,
pub name: Option<String>,
pub slug_id: Option<String>,
pub type: Option<ReleasePipelineType>,
pub include_path_patterns: Option<Vec<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 pipeline.
slug_id: Option<String>The pipeline’s unique slug identifier. If not provided, it will be auto-generated.
type: Option<ReleasePipelineType>The type of the pipeline.
include_path_patterns: Option<Vec<String>>Glob patterns to include commits affecting matching file paths.
Trait Implementations§
Source§impl Clone for ReleasePipelineCreateInput
impl Clone for ReleasePipelineCreateInput
Source§fn clone(&self) -> ReleasePipelineCreateInput
fn clone(&self) -> ReleasePipelineCreateInput
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 ReleasePipelineCreateInput
impl Debug for ReleasePipelineCreateInput
Source§impl Default for ReleasePipelineCreateInput
impl Default for ReleasePipelineCreateInput
Source§fn default() -> ReleasePipelineCreateInput
fn default() -> ReleasePipelineCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReleasePipelineCreateInput
impl<'de> Deserialize<'de> for ReleasePipelineCreateInput
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 ReleasePipelineCreateInput
impl RefUnwindSafe for ReleasePipelineCreateInput
impl Send for ReleasePipelineCreateInput
impl Sync for ReleasePipelineCreateInput
impl Unpin for ReleasePipelineCreateInput
impl UnwindSafe for ReleasePipelineCreateInput
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