pub type BlockAction = Cow<'static, str>;
pub enum BlockAction { Borrowed(&'static str), Owned(String), }
Borrowed data.
Owned data.