Skip to main content

Log10E

Trait Log10E 

Source
pub trait Log10E {
    const LOG_10_E: Self;
}
Expand description

Provides $\log_{10} e$.

Required Associated Constants§

Source

const LOG_10_E: Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl Log10E for f32

$\log_{10} e$.

Source§

const LOG_10_E: f32 = core::f32::consts::LOG10_E

Source§

impl Log10E for f64

$\log_{10} e$.

Source§

const LOG_10_E: f64 = core::f64::consts::LOG10_E

Implementors§