#[non_exhaustive]pub struct GetTestCaseInputBuilder { /* private fields */ }
Expand description
A builder for GetTestCaseInput
.
Implementations§
source§impl GetTestCaseInputBuilder
impl GetTestCaseInputBuilder
sourcepub fn test_case_id(self, input: impl Into<String>) -> Self
pub fn test_case_id(self, input: impl Into<String>) -> Self
The request test ID of the test case.
This field is required.sourcepub fn set_test_case_id(self, input: Option<String>) -> Self
pub fn set_test_case_id(self, input: Option<String>) -> Self
The request test ID of the test case.
sourcepub fn get_test_case_id(&self) -> &Option<String>
pub fn get_test_case_id(&self) -> &Option<String>
The request test ID of the test case.
sourcepub fn test_case_version(self, input: i32) -> Self
pub fn test_case_version(self, input: i32) -> Self
The test case version of the test case.
sourcepub fn set_test_case_version(self, input: Option<i32>) -> Self
pub fn set_test_case_version(self, input: Option<i32>) -> Self
The test case version of the test case.
sourcepub fn get_test_case_version(&self) -> &Option<i32>
pub fn get_test_case_version(&self) -> &Option<i32>
The test case version of the test case.
sourcepub fn build(self) -> Result<GetTestCaseInput, BuildError>
pub fn build(self) -> Result<GetTestCaseInput, BuildError>
Consumes the builder and constructs a GetTestCaseInput
.
source§impl GetTestCaseInputBuilder
impl GetTestCaseInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<GetTestCaseOutput, SdkError<GetTestCaseError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<GetTestCaseOutput, SdkError<GetTestCaseError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetTestCaseInputBuilder
impl Clone for GetTestCaseInputBuilder
source§fn clone(&self) -> GetTestCaseInputBuilder
fn clone(&self) -> GetTestCaseInputBuilder
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 GetTestCaseInputBuilder
impl Debug for GetTestCaseInputBuilder
source§impl Default for GetTestCaseInputBuilder
impl Default for GetTestCaseInputBuilder
source§fn default() -> GetTestCaseInputBuilder
fn default() -> GetTestCaseInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetTestCaseInputBuilder
impl PartialEq for GetTestCaseInputBuilder
source§fn eq(&self, other: &GetTestCaseInputBuilder) -> bool
fn eq(&self, other: &GetTestCaseInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetTestCaseInputBuilder
Auto Trait Implementations§
impl Freeze for GetTestCaseInputBuilder
impl RefUnwindSafe for GetTestCaseInputBuilder
impl Send for GetTestCaseInputBuilder
impl Sync for GetTestCaseInputBuilder
impl Unpin for GetTestCaseInputBuilder
impl UnwindSafe for GetTestCaseInputBuilder
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.