#[non_exhaustive]pub struct DescribeScriptOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeScriptOutput
.
Implementations§
source§impl DescribeScriptOutputBuilder
impl DescribeScriptOutputBuilder
sourcepub fn script(self, input: Script) -> Self
pub fn script(self, input: Script) -> Self
A set of properties describing the requested script.
sourcepub fn set_script(self, input: Option<Script>) -> Self
pub fn set_script(self, input: Option<Script>) -> Self
A set of properties describing the requested script.
sourcepub fn get_script(&self) -> &Option<Script>
pub fn get_script(&self) -> &Option<Script>
A set of properties describing the requested script.
sourcepub fn build(self) -> DescribeScriptOutput
pub fn build(self) -> DescribeScriptOutput
Consumes the builder and constructs a DescribeScriptOutput
.
Trait Implementations§
source§impl Clone for DescribeScriptOutputBuilder
impl Clone for DescribeScriptOutputBuilder
source§fn clone(&self) -> DescribeScriptOutputBuilder
fn clone(&self) -> DescribeScriptOutputBuilder
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 DescribeScriptOutputBuilder
impl Debug for DescribeScriptOutputBuilder
source§impl Default for DescribeScriptOutputBuilder
impl Default for DescribeScriptOutputBuilder
source§fn default() -> DescribeScriptOutputBuilder
fn default() -> DescribeScriptOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DescribeScriptOutputBuilder
impl PartialEq for DescribeScriptOutputBuilder
source§fn eq(&self, other: &DescribeScriptOutputBuilder) -> bool
fn eq(&self, other: &DescribeScriptOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeScriptOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeScriptOutputBuilder
impl RefUnwindSafe for DescribeScriptOutputBuilder
impl Send for DescribeScriptOutputBuilder
impl Sync for DescribeScriptOutputBuilder
impl Unpin for DescribeScriptOutputBuilder
impl UnwindSafe for DescribeScriptOutputBuilder
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.