pub struct FpResult<T> {
pub val: T,
pub status: Status,
}
Expand description
A value combined with a floating point status.
Fields§
§val: T
§status: Status
Implementations§
Auto Trait Implementations§
impl<T> Freeze for FpResult<T>where
T: Freeze,
impl<T> RefUnwindSafe for FpResult<T>where
T: RefUnwindSafe,
impl<T> Send for FpResult<T>where
T: Send,
impl<T> Sync for FpResult<T>where
T: Sync,
impl<T> Unpin for FpResult<T>where
T: Unpin,
impl<T> UnwindSafe for FpResult<T>where
T: UnwindSafe,
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