pub enum CiProvider {
GitHubActions,
GitLabCi,
CircleCi,
TravisCi,
Jenkins,
AzurePipelines,
Generic,
Local,
}Expand description
Detected CI environment
Variants§
GitHubActions
GitHub Actions
GitLabCi
GitLab CI
CircleCi
CircleCI
TravisCi
Travis CI
Jenkins
Jenkins
AzurePipelines
Azure Pipelines
Generic
Generic CI (detected but unknown provider)
Local
Local development (not CI)
Trait Implementations§
Source§impl Clone for CiProvider
impl Clone for CiProvider
Source§fn clone(&self) -> CiProvider
fn clone(&self) -> CiProvider
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 CiProvider
impl Debug for CiProvider
Source§impl PartialEq for CiProvider
impl PartialEq for CiProvider
impl Eq for CiProvider
impl StructuralPartialEq for CiProvider
Auto Trait Implementations§
impl Freeze for CiProvider
impl RefUnwindSafe for CiProvider
impl Send for CiProvider
impl Sync for CiProvider
impl Unpin for CiProvider
impl UnwindSafe for CiProvider
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