automatic cargo CI changes
This commit is contained in:
parent
a4814d43e0
commit
6e047bdffd
|
@ -52,7 +52,11 @@ impl Post {
|
||||||
|
|
||||||
impl Display for Post {
|
impl Display for Post {
|
||||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
writeln!(f, "\n{:<60} | published: {:<5}\n{:=^140}\n\n{}", self.title, self.published, "", self.body)
|
writeln!(
|
||||||
|
f,
|
||||||
|
"\n{:<60} | published: {:<5}\n{:=^140}\n\n{}",
|
||||||
|
self.title, self.published, "", self.body
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue