// Found in a crater run on #118553 pub trait Debug {} pub trait Service { type Input; type Output; type Error; } pub struct ServiceChain
{
prev: P,
service: S,
}
impl
where
P::Error: 'static,
S::Error: 'static,
{
type Input = P::Input;
type Output = S::Output;
type Error = ();
}
pub struct ServiceChainBuilder ,
}
impl {
pub fn next