pub mod duration; pub use duration::*; pub struct FmtWrapper(T); pub trait Wrappable { fn wrap_into(self) -> FmtWrapper where Self: Sized, { FmtWrapper(self) } fn wrap(&self) -> FmtWrapper<&Self> { FmtWrapper(&self) } }