pub trait ContentWithDraft: Content {
    fn to_draft(&self) -> Draft;
fn apply_draft(&self, body: &str) -> Result<Self, Error>
    where
        Self: Sized
; }
Expand description

A content with draft support

Draft is a compact, human

Required methods

Implementors