pub trait ServiceBuilderUtilsExt<T, E>where
E: Display,{
type Output;
// Required method
fn print_and_drop_request_error(self) -> Self::Output;
}Required Associated Types§
Required Methods§
Sourcefn print_and_drop_request_error(self) -> Self::Output
fn print_and_drop_request_error(self) -> Self::Output
Output all Err variant items via log::warn! and discard them. Converts output type of the rest from Result<T, E> to T.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".