Trait pact::IntoCowStr

source ·
pub trait IntoCowStr: Into<Cow<'static, str>> { }
Expand description

Trait alias for accepting anything that converts into a CowStr.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> IntoCowStr for T
where T: Into<Cow<'static, str>>,