pub trait FormatChar:
Copy
+ Into<CodePoint>
+ From<u8> {
// Required methods
fn to_char_lossy(self) -> char;
fn eq_char(self, c: char) -> 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.