Skip to content

Commit 779edb4

Browse files
committed
style: fix formatting
Signed-off-by: Richard Zak <[email protected]>
1 parent c19bf22 commit 779edb4

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

ciborium-io/src/eio.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ impl<'a, W> EIOWriter<'a, W> {
1111
}
1212

1313
impl<'a, W> Write for EIOWriter<'a, W>
14-
where W: embedded_io::Write
14+
where
15+
W: embedded_io::Write,
1516
{
1617
type Error = W::Error;
1718

@@ -24,7 +25,6 @@ where W: embedded_io::Write
2425
}
2526
}
2627

27-
2828
/// Wrapper around R: embedded_io::Read implementing ciborium::Read
2929
pub struct EIOReader<'a, R>(&'a mut R);
3030

@@ -36,7 +36,8 @@ impl<'a, R> EIOReader<'a, R> {
3636
}
3737

3838
impl<'a, R> Read for EIOReader<'a, R>
39-
where R: embedded_io::Read
39+
where
40+
R: embedded_io::Read,
4041
{
4142
type Error = embedded_io::ReadExactError<R::Error>;
4243

0 commit comments

Comments
 (0)