pub struct Native64;
Expand description
Numerical kernel specifier for Rust’s native 64-bit floating-point types.
This struct is used as a generic argument or associated type to indicate
that the floating-point values for computations should be f64
for real numbers
and num::Complex<f64>
for complex numbers.
It implements the RawKernel
trait, bridging the native raw types to the
num-valid
’s generic numerical abstraction.
Trait Implementations§
Source§impl PartialOrd for Native64
impl PartialOrd for Native64
impl StructuralPartialEq for Native64
Auto Trait Implementations§
impl Freeze for Native64
impl RefUnwindSafe for Native64
impl Send for Native64
impl Sync for Native64
impl Unpin for Native64
impl UnwindSafe for Native64
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more