Trait dtoa::private::Sealed

source ·
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§

source

fn is_nonfinite(self) -> bool

source

fn format_nonfinite(self) -> &'static str

source

fn write(self, buf: &mut Buffer) -> &str

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Sealed for f32

source§

fn is_nonfinite(self) -> bool

source§

fn format_nonfinite(self) -> &'static str

source§

fn write(self, buf: &mut Buffer) -> &str

source§

impl Sealed for f64

source§

fn is_nonfinite(self) -> bool

source§

fn format_nonfinite(self) -> &'static str

source§

fn write(self, buf: &mut Buffer) -> &str

Implementors§