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§
Object Safety§
This trait is not object safe.