#[repr(C)]
pub union EpTypeUnion {
pub value: f64,
pub bits: IeeeDoubleStruct,
pub nan: IeeeNanStruct,
}Expand description
Struct**********************************************************************
Synopsis [Extended precision double to keep very large value.]
Description [Extended precision double to keep very large value.]
SeeAlso []
Fields§
§value: f64§bits: IeeeDoubleStruct§nan: IeeeNanStructTrait Implementations§
Source§impl Clone for EpTypeUnion
impl Clone for EpTypeUnion
Source§fn clone(&self) -> EpTypeUnion
fn clone(&self) -> EpTypeUnion
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EpTypeUnion
Auto Trait Implementations§
impl Freeze for EpTypeUnion
impl RefUnwindSafe for EpTypeUnion
impl Send for EpTypeUnion
impl Sync for EpTypeUnion
impl Unpin for EpTypeUnion
impl UnwindSafe for EpTypeUnion
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