pub struct Div32 {
pub double_reciprocal: u128,
pub single_reciprocal: u64,
pub divisor: u32,
}
Expand description
Divisor representing a 32bit denominator.
Fields§
§double_reciprocal: u128
§single_reciprocal: u64
§divisor: u32
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Div32
impl RefUnwindSafe for Div32
impl Send for Div32
impl Sync for Div32
impl Unpin for Div32
impl UnwindSafe for Div32
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