Trait ryu::buffer::Sealed

source ·
pub trait Sealed: Copy {
    // Required methods
    fn is_nonfinite(self) -> bool;
    fn format_nonfinite(self) -> &'static str;
    unsafe fn write_to_ryu_buffer(self, result: *mut u8) -> usize;
}

Required Methods§

source

fn is_nonfinite(self) -> bool

source

fn format_nonfinite(self) -> &'static str

source

unsafe fn write_to_ryu_buffer(self, result: *mut u8) -> usize

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§

unsafe fn write_to_ryu_buffer(self, result: *mut u8) -> usize

source§

impl Sealed for f64

source§

fn is_nonfinite(self) -> bool

source§

fn format_nonfinite(self) -> &'static str

source§

unsafe fn write_to_ryu_buffer(self, result: *mut u8) -> usize

Implementors§