#[non_exhaustive]pub struct GetConsoleOutputOutputBuilder { /* private fields */ }
Expand description
A builder for GetConsoleOutputOutput
.
Implementations§
source§impl GetConsoleOutputOutputBuilder
impl GetConsoleOutputOutputBuilder
sourcepub fn instance_id(self, input: impl Into<String>) -> Self
pub fn instance_id(self, input: impl Into<String>) -> Self
The ID of the instance.
sourcepub fn set_instance_id(self, input: Option<String>) -> Self
pub fn set_instance_id(self, input: Option<String>) -> Self
The ID of the instance.
sourcepub fn get_instance_id(&self) -> &Option<String>
pub fn get_instance_id(&self) -> &Option<String>
The ID of the instance.
sourcepub fn output(self, input: impl Into<String>) -> Self
pub fn output(self, input: impl Into<String>) -> Self
The console output, base64-encoded. If you are using a command line tool, the tool decodes the output for you.
sourcepub fn set_output(self, input: Option<String>) -> Self
pub fn set_output(self, input: Option<String>) -> Self
The console output, base64-encoded. If you are using a command line tool, the tool decodes the output for you.
sourcepub fn get_output(&self) -> &Option<String>
pub fn get_output(&self) -> &Option<String>
The console output, base64-encoded. If you are using a command line tool, the tool decodes the output for you.
sourcepub fn set_timestamp(self, input: Option<DateTime>) -> Self
pub fn set_timestamp(self, input: Option<DateTime>) -> Self
The time at which the output was last updated.
sourcepub fn get_timestamp(&self) -> &Option<DateTime>
pub fn get_timestamp(&self) -> &Option<DateTime>
The time at which the output was last updated.
sourcepub fn build(self) -> GetConsoleOutputOutput
pub fn build(self) -> GetConsoleOutputOutput
Consumes the builder and constructs a GetConsoleOutputOutput
.
Trait Implementations§
source§impl Clone for GetConsoleOutputOutputBuilder
impl Clone for GetConsoleOutputOutputBuilder
source§fn clone(&self) -> GetConsoleOutputOutputBuilder
fn clone(&self) -> GetConsoleOutputOutputBuilder
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 Default for GetConsoleOutputOutputBuilder
impl Default for GetConsoleOutputOutputBuilder
source§fn default() -> GetConsoleOutputOutputBuilder
fn default() -> GetConsoleOutputOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetConsoleOutputOutputBuilder
impl PartialEq for GetConsoleOutputOutputBuilder
source§fn eq(&self, other: &GetConsoleOutputOutputBuilder) -> bool
fn eq(&self, other: &GetConsoleOutputOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetConsoleOutputOutputBuilder
Auto Trait Implementations§
impl Freeze for GetConsoleOutputOutputBuilder
impl RefUnwindSafe for GetConsoleOutputOutputBuilder
impl Send for GetConsoleOutputOutputBuilder
impl Sync for GetConsoleOutputOutputBuilder
impl Unpin for GetConsoleOutputOutputBuilder
impl UnwindSafe for GetConsoleOutputOutputBuilder
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> 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.