Fix indent for where

This commit is contained in:
Waffle 2019-11-02 16:50:32 +03:00
parent 3f2d049c22
commit 4423a992c0

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