Struct gitlab_runner_mock::MockJobBuilder
source · [−]pub struct MockJobBuilder { /* private fields */ }
Implementations
sourceimpl MockJobBuilder
impl MockJobBuilder
pub fn add_variable(
&mut self,
key: String,
value: String,
public: bool,
masked: bool
)
pub fn add_step(
&mut self,
name: MockJobStepName,
script: Vec<String>,
timeout: u64,
when: MockJobStepWhen,
allow_failure: bool
)
pub fn add_artifact(
&mut self,
name: Option<String>,
untracked: bool,
paths: Vec<String>,
when: Option<MockJobArtifactWhen>,
artifact_type: String,
artifact_format: Option<String>,
expire_in: Option<String>
)
pub fn add_artifact_paths(&mut self, paths: Vec<String>)
pub fn dependency(&mut self, dependency: MockJob)
pub fn build(self) -> MockJob
Trait Implementations
sourceimpl Debug for MockJobBuilder
impl Debug for MockJobBuilder
sourceimpl Default for MockJobBuilder
impl Default for MockJobBuilder
sourcefn default() -> MockJobBuilder
fn default() -> MockJobBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for MockJobBuilder
impl Send for MockJobBuilder
impl Sync for MockJobBuilder
impl Unpin for MockJobBuilder
impl UnwindSafe for MockJobBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more