pub struct BigFloat<const BASE: u32, M: Manager> {
pub manager: M,
pub significand: JsBigintMutRef<M::Dealloc>,
pub sign: Sign,
pub exp: i64,
pub non_zero_reminder: bool,
}
Fields§
§manager: M
§significand: JsBigintMutRef<M::Dealloc>
§sign: Sign
§exp: i64
§non_zero_reminder: bool
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<const BASE: u32, M> Freeze for BigFloat<BASE, M>where
M: Freeze,
impl<const BASE: u32, M> RefUnwindSafe for BigFloat<BASE, M>
impl<const BASE: u32, M> !Send for BigFloat<BASE, M>
impl<const BASE: u32, M> !Sync for BigFloat<BASE, M>
impl<const BASE: u32, M> Unpin for BigFloat<BASE, M>where
M: Unpin,
impl<const BASE: u32, M> UnwindSafe for BigFloat<BASE, M>
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