pub struct AwsErrorCodeClassifierBuilder<E> { /* private fields */ }
Expand description
Builder for AwsErrorCodeClassifier
Implementations§
source§impl<E> AwsErrorCodeClassifierBuilder<E>
impl<E> AwsErrorCodeClassifierBuilder<E>
sourcepub fn transient_errors(
self,
transient_errors: impl Into<Cow<'static, [&'static str]>>,
) -> Self
pub fn transient_errors( self, transient_errors: impl Into<Cow<'static, [&'static str]>>, ) -> Self
Set transient_errors
for the builder
sourcepub fn build(self) -> AwsErrorCodeClassifier<E>
pub fn build(self) -> AwsErrorCodeClassifier<E>
Build a new AwsErrorCodeClassifier
Trait Implementations§
Auto Trait Implementations§
impl<E> Freeze for AwsErrorCodeClassifierBuilder<E>
impl<E> RefUnwindSafe for AwsErrorCodeClassifierBuilder<E>where
E: RefUnwindSafe,
impl<E> Send for AwsErrorCodeClassifierBuilder<E>where
E: Send,
impl<E> Sync for AwsErrorCodeClassifierBuilder<E>where
E: Sync,
impl<E> Unpin for AwsErrorCodeClassifierBuilder<E>where
E: Unpin,
impl<E> UnwindSafe for AwsErrorCodeClassifierBuilder<E>where
E: UnwindSafe,
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.