#[non_exhaustive]pub struct GetJobRunOutputBuilder { /* private fields */ }Expand description
A builder for GetJobRunOutput.
Implementations§
source§impl GetJobRunOutputBuilder
impl GetJobRunOutputBuilder
sourcepub fn job_run(self, input: JobRun) -> Self
pub fn job_run(self, input: JobRun) -> Self
The output displays information about the job run.
This field is required.sourcepub fn set_job_run(self, input: Option<JobRun>) -> Self
pub fn set_job_run(self, input: Option<JobRun>) -> Self
The output displays information about the job run.
sourcepub fn get_job_run(&self) -> &Option<JobRun>
pub fn get_job_run(&self) -> &Option<JobRun>
The output displays information about the job run.
sourcepub fn build(self) -> GetJobRunOutput
pub fn build(self) -> GetJobRunOutput
Consumes the builder and constructs a GetJobRunOutput.
Trait Implementations§
source§impl Clone for GetJobRunOutputBuilder
impl Clone for GetJobRunOutputBuilder
source§fn clone(&self) -> GetJobRunOutputBuilder
fn clone(&self) -> GetJobRunOutputBuilder
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 GetJobRunOutputBuilder
impl Debug for GetJobRunOutputBuilder
source§impl Default for GetJobRunOutputBuilder
impl Default for GetJobRunOutputBuilder
source§fn default() -> GetJobRunOutputBuilder
fn default() -> GetJobRunOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetJobRunOutputBuilder
impl PartialEq for GetJobRunOutputBuilder
source§fn eq(&self, other: &GetJobRunOutputBuilder) -> bool
fn eq(&self, other: &GetJobRunOutputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetJobRunOutputBuilder
Auto Trait Implementations§
impl Freeze for GetJobRunOutputBuilder
impl RefUnwindSafe for GetJobRunOutputBuilder
impl Send for GetJobRunOutputBuilder
impl Sync for GetJobRunOutputBuilder
impl Unpin for GetJobRunOutputBuilder
impl UnwindSafe for GetJobRunOutputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.