use std::{borrow::Cow, fmt}; pub trait Post: fmt::Debug { fn get_title(&self) -> &str; fn get_article(&self) -> Cow; }