#[repr(u8)]pub enum FUNC {
Cosine = 0,
Sine = 1,
Phase = 2,
Modulus = 3,
Arctangent = 4,
HyperbolicCosine = 5,
HyperbolicSine = 6,
Arctanh = 7,
NaturalLogarithm = 8,
SquareRoot = 9,
}
Expand description
FUNC
Value on reset: 0
Variants§
Cosine = 0
0: Cosine function
Sine = 1
1: Sine function
Phase = 2
2: Phase function
Modulus = 3
3: Modulus function
Arctangent = 4
4: Arctangent function
HyperbolicCosine = 5
5: Hyperbolic Cosine function
HyperbolicSine = 6
6: Hyperbolic Sine function
Arctanh = 7
7: Arctanh function
NaturalLogarithm = 8
8: Natural Logarithm function
SquareRoot = 9
9: Square Root function
Trait Implementations§
impl Copy for FUNC
impl Eq for FUNC
impl IsEnum for FUNC
impl StructuralPartialEq for FUNC
Auto Trait Implementations§
impl Freeze for FUNC
impl RefUnwindSafe for FUNC
impl Send for FUNC
impl Sync for FUNC
impl Unpin for FUNC
impl UnwindSafe for FUNC
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