impl<A: MemPool> Vec<u8, A> {
pub fn to_str(&self) -> &str {
unsafe { std::str::from_utf8_unchecked(self.as_slice()) }
}
}
it direct called the "from_utf8_unchecked" without any precondition and the method is declear as 'pub' and not marked as 'unsafe'. But I can't build this project in my current platform. Is this crate unmaintained?