pub(crate) trait Escapee: Into<char> {
const SUPPORTS_UNICODE: bool;
// Required methods
fn from_byte(b: u8) -> Self;
fn from_char(c: char) -> Self;
}
Required Associated Constants§
const SUPPORTS_UNICODE: bool
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.