pub struct AdoScheduleTriggers {
pub display_name: String,
pub branches: Vec<String>,
pub exclude_branches: Vec<String>,
pub cron: String,
}
Expand description
Trigger ADO pipelines via Continuous Integration
Fields§
§display_name: String
Friendly name for the scheduled run
branches: Vec<String>
Run the pipeline whenever there is a commit on these specified branches (supports glob syntax)
exclude_branches: Vec<String>
Specify any branches which should be filtered out from the list of
branches
(supports glob syntax)
cron: String
Run the pipeline in a schedule, as specified by a cron string
Trait Implementations§
Source§impl Debug for AdoScheduleTriggers
impl Debug for AdoScheduleTriggers
Source§impl Default for AdoScheduleTriggers
impl Default for AdoScheduleTriggers
Source§fn default() -> AdoScheduleTriggers
fn default() -> AdoScheduleTriggers
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AdoScheduleTriggers
impl RefUnwindSafe for AdoScheduleTriggers
impl Send for AdoScheduleTriggers
impl Sync for AdoScheduleTriggers
impl Unpin for AdoScheduleTriggers
impl UnwindSafe for AdoScheduleTriggers
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