Trait rama::layer::MakeLayerError
pub trait MakeLayerError: Sealed + Send + Sync + 'static {
type Error;
// Required method
fn make_layer_error(&self) -> Self::Error;
}
Expand description
Required Associated Types§
Required Methods§
fn make_layer_error(&self) -> Self::Error
fn make_layer_error(&self) -> Self::Error
Create a new error value that can
be turned into the inner Service
’s error type.