pub trait Sealed: Float {
// Required methods
fn is_nonfinite(self) -> bool;
fn format_nonfinite(self) -> &'static str;
unsafe fn write_to_zmij_buffer(self, buffer: *mut u8) -> *mut u8;
}Required Methods§
fn is_nonfinite(self) -> bool
fn format_nonfinite(self) -> &'static str
unsafe fn write_to_zmij_buffer(self, buffer: *mut u8) -> *mut u8
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.