From: Andrea Zagli Date: Sat, 1 Jun 2024 09:04:05 +0000 (+0200) Subject: Impl Display for Align. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=09592d74d9d5e1944bd2f6e0d78e2060142a1cfb;p=rust%2Fzakgrid Impl Display for Align. --- diff --git a/src/lib.rs b/src/lib.rs index df3c191..a142596 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -use std::any::Any; +use std::{fmt, any::Any}; use serde_derive::Serialize; use tera::Tera; @@ -12,6 +12,16 @@ pub enum Align { Right, } +impl fmt::Display for Align { + fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { + write!(f, "{}", match self { + Align::Left => "left", + Align::Center => "center", + Align::Right => "right", + }) + } +} + pub struct Column { name: String, title: String,