pub trait Sealed: Copy {
// Required methods
fn is_nonfinite(self) -> bool;
fn format_nonfinite(self) -> &'static str;
fn write(self, buf: &mut Buffer) -> &str;
}
Required Methods§
fn is_nonfinite(self) -> bool
fn format_nonfinite(self) -> &'static str
fn write(self, buf: &mut Buffer) -> &str
Object Safety§
This trait is not object safe.