#[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<GetConsoleOutputOutputBuilder> for GetConsoleOutputOutputBuilder
impl PartialEq<GetConsoleOutputOutputBuilder> 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 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