pub type LayerId<'a> = Cow<'a, str>;
Unique Layer identifier.
pub enum LayerId<'a> { Borrowed(&'a str), Owned(String), }
Borrowed data.
Owned data.