#[non_exhaustive]pub struct AsyncResponseDetailsBuilder { /* private fields */ }Expand description
A builder for AsyncResponseDetails.
Implementations§
source§impl AsyncResponseDetailsBuilder
impl AsyncResponseDetailsBuilder
sourcepub fn multi_region_access_point_details(
self,
input: MultiRegionAccessPointsAsyncResponse
) -> Self
pub fn multi_region_access_point_details( self, input: MultiRegionAccessPointsAsyncResponse ) -> Self
The details for the Multi-Region Access Point.
sourcepub fn set_multi_region_access_point_details(
self,
input: Option<MultiRegionAccessPointsAsyncResponse>
) -> Self
pub fn set_multi_region_access_point_details( self, input: Option<MultiRegionAccessPointsAsyncResponse> ) -> Self
The details for the Multi-Region Access Point.
sourcepub fn get_multi_region_access_point_details(
&self
) -> &Option<MultiRegionAccessPointsAsyncResponse>
pub fn get_multi_region_access_point_details( &self ) -> &Option<MultiRegionAccessPointsAsyncResponse>
The details for the Multi-Region Access Point.
sourcepub fn error_details(self, input: AsyncErrorDetails) -> Self
pub fn error_details(self, input: AsyncErrorDetails) -> Self
Error details for an asynchronous request.
sourcepub fn set_error_details(self, input: Option<AsyncErrorDetails>) -> Self
pub fn set_error_details(self, input: Option<AsyncErrorDetails>) -> Self
Error details for an asynchronous request.
sourcepub fn get_error_details(&self) -> &Option<AsyncErrorDetails>
pub fn get_error_details(&self) -> &Option<AsyncErrorDetails>
Error details for an asynchronous request.
sourcepub fn build(self) -> AsyncResponseDetails
pub fn build(self) -> AsyncResponseDetails
Consumes the builder and constructs a AsyncResponseDetails.
Trait Implementations§
source§impl Clone for AsyncResponseDetailsBuilder
impl Clone for AsyncResponseDetailsBuilder
source§fn clone(&self) -> AsyncResponseDetailsBuilder
fn clone(&self) -> AsyncResponseDetailsBuilder
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 AsyncResponseDetailsBuilder
impl Debug for AsyncResponseDetailsBuilder
source§impl Default for AsyncResponseDetailsBuilder
impl Default for AsyncResponseDetailsBuilder
source§fn default() -> AsyncResponseDetailsBuilder
fn default() -> AsyncResponseDetailsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AsyncResponseDetailsBuilder
impl PartialEq for AsyncResponseDetailsBuilder
source§fn eq(&self, other: &AsyncResponseDetailsBuilder) -> bool
fn eq(&self, other: &AsyncResponseDetailsBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AsyncResponseDetailsBuilder
Auto Trait Implementations§
impl Freeze for AsyncResponseDetailsBuilder
impl RefUnwindSafe for AsyncResponseDetailsBuilder
impl Send for AsyncResponseDetailsBuilder
impl Sync for AsyncResponseDetailsBuilder
impl Unpin for AsyncResponseDetailsBuilder
impl UnwindSafe for AsyncResponseDetailsBuilder
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.