Fix indent for where

This commit is contained in:
Waffle 2019-11-02 16:50:32 +03:00
parent 08ebb3cc01
commit 636b6af9ad

View file

@ -12,10 +12,10 @@ pub trait ErrorPolicy<E> {
}
impl<E, F, Fut> ErrorPolicy<E> for F
where
F: Fn(E) -> Fut + Sync,
Fut: Future<Output = ()> + Send,
E: Send,
where
F: Fn(E) -> Fut + Sync,
Fut: Future<Output = ()> + Send,
E: Send,
{
fn handle_error<'s, 'async_trait>(&'s self, error: E) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where