[−][src]Struct gitlab_ci_parser::Job
All Jobs in the same stage tend to be run at once.
Fields
stage: Option<StageName>before_script: Option<Vec<Script>>script: Option<Vec<Script>>variables: Option<BTreeMap<VarName, VarValue>>Even though variables could be None, they could be defined in extends_job.variables (or globally)
extends: Option<JobName>extends_job: Option<Rc<Job>>Methods
impl Job[src]
pub fn get_merged_variables(&self) -> BTreeMap<String, String>[src]
Returns the consolidated local variables based on all extends.
Trait Implementations
impl Debug for Job[src]
impl<'de> Deserialize<'de> for Job[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl PartialEq<Job> for Job[src]
impl Serialize for Job[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralPartialEq for Job[src]
Auto Trait Implementations
impl !RefUnwindSafe for Job
impl !Send for Job
impl !Sync for Job
impl Unpin for Job
impl !UnwindSafe for Job
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,