pub trait CP437CharExt {
// Required methods
fn is_cp437(&self) -> bool;
fn to_cp437_byte(self) -> Option<u8>;
fn to_cp437(self) -> Option<CP437Char>;
}Required Methods§
fn is_cp437(&self) -> bool
fn to_cp437_byte(self) -> Option<u8>
fn to_cp437(self) -> Option<CP437Char>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".