2025-01-05 automated rustfmt nightly
This commit is contained in:
parent
b97be3d497
commit
762f6630fe
|
@ -151,7 +151,5 @@ impl fmt::Display for Builder {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl fmt::Debug for Builder {
|
impl fmt::Debug for Builder {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
|
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { fmt::Display::fmt(self, f) }
|
||||||
fmt::Display::fmt(self, f)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -293,9 +293,7 @@ impl fmt::Display for Magic {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl fmt::Debug for Magic {
|
impl fmt::Debug for Magic {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
|
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { fmt::Display::fmt(self, f) }
|
||||||
fmt::Display::fmt(self, f)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl fmt::LowerHex for Magic {
|
impl fmt::LowerHex for Magic {
|
||||||
|
|
|
@ -440,9 +440,7 @@ impl From<u8> for Opcode {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl fmt::Debug for Opcode {
|
impl fmt::Debug for Opcode {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
|
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { fmt::Display::fmt(self, f) }
|
||||||
fmt::Display::fmt(self, f)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "serde")]
|
#[cfg(feature = "serde")]
|
||||||
|
|
Loading…
Reference in New Issue