pub trait ContentWithDraft: Content { fn to_draft(&self) -> Draft; fn apply_draft(&self, body: &str) -> Result<Self, Error> where Self: Sized; }
A content with draft support
Draft is a compact, human