Skip to content

Commit

Permalink
fix(coapcore): update formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspar030 committed Oct 22, 2024
1 parent f0bc926 commit e753860
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib/coapcore/src/seccontext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,11 @@ impl<O, I> From<O> for OrInner<O, I> {
}

impl<O: RenderableOnMinimal, I: RenderableOnMinimal> RenderableOnMinimal for OrInner<O, I> {
type Error<IE> = OrInner<O::Error<IE>, I::Error<IE>> where IE: RenderableOnMinimal, IE: core::fmt::Debug;
type Error<IE>
= OrInner<O::Error<IE>, I::Error<IE>>
where
IE: RenderableOnMinimal,
IE: core::fmt::Debug;
fn render<M: MinimalWritableMessage>(
self,
msg: &mut M,
Expand Down

0 comments on commit e753860

Please sign in to comment.