pub trait StrLike: Sealed {
    fn from_utf8(&self) -> Option<&str>;
}

Required Methods

Implementations on Foreign Types

Implementors