mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
use edition idioms in the top crate
This commit is contained in:
parent
56d09a12dd
commit
d35f5bc0b0
1 changed files with 2 additions and 2 deletions
|
@ -295,7 +295,7 @@ impl<'a, T> fmt::Debug for Exclusive<'a, T>
|
|||
where
|
||||
T: fmt::Debug,
|
||||
{
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
(**self).fmt(f)
|
||||
}
|
||||
}
|
||||
|
@ -304,7 +304,7 @@ impl<'a, T> fmt::Display for Exclusive<'a, T>
|
|||
where
|
||||
T: fmt::Display,
|
||||
{
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
(**self).fmt(f)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue