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