Skip to content

Commit

Permalink
Reformat with latest rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
chrysn committed Dec 9, 2024
1 parent 5ba1667 commit bffc13e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/coap_message/impl_0_3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,14 @@ impl<'b> WithSortedOptions for super::PacketBuffer<'b> {

impl<'b> ReadableMessage for super::PacketBuffer<'b> {
type Code = u8;
type OptionsIter<'a> = super::OptionsIterator<'a, 'b> where Self: 'a;
type MessageOption<'a> = super::MessageOption<'a> where Self: 'a;
type OptionsIter<'a>
= super::OptionsIterator<'a, 'b>
where
Self: 'a;
type MessageOption<'a>
= super::MessageOption<'a>
where
Self: 'a;

fn code(&self) -> Self::Code {
self.get_code_raw()
Expand Down

0 comments on commit bffc13e

Please sign in to comment.