pub struct ContinuousIntegrationTrigger {
pub build_trigger: BuildTrigger,
pub batch_changes: Option<bool>,
pub branch_filters: Vec<String>,
pub max_concurrent_builds_per_branch: Option<i32>,
pub path_filters: Vec<String>,
pub polling_interval: Option<i32>,
pub polling_job_id: Option<String>,
pub settings_source_type: Option<i32>,
}
Expand description
Represents a continuous integration (CI) trigger.
Fields§
§build_trigger: BuildTrigger
§batch_changes: Option<bool>
Indicates whether changes should be batched while another CI build is running.
branch_filters: Vec<String>
§max_concurrent_builds_per_branch: Option<i32>
The maximum number of simultaneous CI builds that will run per branch.
path_filters: Vec<String>
§polling_interval: Option<i32>
The polling interval, in seconds.
polling_job_id: Option<String>
The ID of the job used to poll an external repository.
settings_source_type: Option<i32>
Implementations§
Trait Implementations§
source§impl Clone for ContinuousIntegrationTrigger
impl Clone for ContinuousIntegrationTrigger
source§fn clone(&self) -> ContinuousIntegrationTrigger
fn clone(&self) -> ContinuousIntegrationTrigger
Returns a copy 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 ContinuousIntegrationTrigger
impl Debug for ContinuousIntegrationTrigger
source§impl Default for ContinuousIntegrationTrigger
impl Default for ContinuousIntegrationTrigger
source§fn default() -> ContinuousIntegrationTrigger
fn default() -> ContinuousIntegrationTrigger
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ContinuousIntegrationTrigger
impl<'de> Deserialize<'de> for ContinuousIntegrationTrigger
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
source§impl PartialEq for ContinuousIntegrationTrigger
impl PartialEq for ContinuousIntegrationTrigger
source§fn eq(&self, other: &ContinuousIntegrationTrigger) -> bool
fn eq(&self, other: &ContinuousIntegrationTrigger) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ContinuousIntegrationTrigger
Auto Trait Implementations§
impl Freeze for ContinuousIntegrationTrigger
impl RefUnwindSafe for ContinuousIntegrationTrigger
impl Send for ContinuousIntegrationTrigger
impl Sync for ContinuousIntegrationTrigger
impl Unpin for ContinuousIntegrationTrigger
impl UnwindSafe for ContinuousIntegrationTrigger
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