pub enum Precision {
Show 15 variants
Iters4 = 1,
Iters8 = 2,
Iters12 = 3,
Iters16 = 4,
Iters20 = 5,
Iters24 = 6,
Iters28 = 7,
Iters32 = 8,
Iters36 = 9,
Iters40 = 10,
Iters44 = 11,
Iters48 = 12,
Iters52 = 13,
Iters56 = 14,
Iters60 = 15,
}
Expand description
CORDIC precision
Variants§
Iters4 = 1
Iters8 = 2
Iters12 = 3
Iters16 = 4
Iters20 = 5
Iters24 = 6
Iters28 = 7
Iters32 = 8
Iters36 = 9
Iters40 = 10
Iters44 = 11
Iters48 = 12
Iters52 = 13
Iters56 = 14
Iters60 = 15
Trait Implementations§
impl Copy for Precision
Auto Trait Implementations§
impl Freeze for Precision
impl RefUnwindSafe for Precision
impl Send for Precision
impl Sync for Precision
impl Unpin for Precision
impl UnwindSafe for Precision
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