pub struct CustomizableOperation<O, Retry> { /* private fields */ }
Expand description
Implementations§
Source§impl<O, Retry> CustomizableOperation<O, Retry>
impl<O, Retry> CustomizableOperation<O, Retry>
Sourcepub fn map_request<E>(
self,
f: impl FnOnce(Request<SdkBody>) -> Result<Request<SdkBody>, E>,
) -> Result<Self, E>
pub fn map_request<E>( self, f: impl FnOnce(Request<SdkBody>) -> Result<Request<SdkBody>, E>, ) -> Result<Self, E>
Allows for customizing the operation’s request
Sourcepub fn mutate_request(self, f: impl FnOnce(&mut Request<SdkBody>)) -> Self
pub fn mutate_request(self, f: impl FnOnce(&mut Request<SdkBody>)) -> Self
Convenience for map_request
where infallible direct mutation of request is acceptable
Sourcepub fn map_operation<E>(
self,
f: impl FnOnce(Operation<O, Retry>) -> Result<Operation<O, Retry>, E>,
) -> Result<Self, E>
pub fn map_operation<E>( self, f: impl FnOnce(Operation<O, Retry>) -> Result<Operation<O, Retry>, E>, ) -> Result<Self, E>
Allows for customizing the entire operation
Sourcepub fn request_mut(&mut self) -> &mut Request<SdkBody>
pub fn request_mut(&mut self) -> &mut Request<SdkBody>
Direct access to mutate the HTTP request
Source§impl<O, Retry> CustomizableOperation<O, Retry>
impl<O, Retry> CustomizableOperation<O, Retry>
Trait Implementations§
Auto Trait Implementations§
impl<O, Retry> !Freeze for CustomizableOperation<O, Retry>
impl<O, Retry> !RefUnwindSafe for CustomizableOperation<O, Retry>
impl<O, Retry> Send for CustomizableOperation<O, Retry>
impl<O, Retry> Sync for CustomizableOperation<O, Retry>
impl<O, Retry> Unpin for CustomizableOperation<O, Retry>
impl<O, Retry> !UnwindSafe for CustomizableOperation<O, Retry>
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 more