#[repr(u32)]pub enum ComplexOperator {
Undefined = 0,
Add = 1,
Conjugate = 2,
Divide = 3,
MagnitudePhase = 4,
Multiply = 5,
RealImaginary = 6,
Subtract = 7,
}
Variants§
Undefined = 0
Add = 1
Conjugate = 2
Divide = 3
MagnitudePhase = 4
Multiply = 5
RealImaginary = 6
Subtract = 7
Trait Implementations§
Source§impl Clone for ComplexOperator
impl Clone for ComplexOperator
Source§fn clone(&self) -> ComplexOperator
fn clone(&self) -> ComplexOperator
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ComplexOperator
impl Debug for ComplexOperator
Source§impl Hash for ComplexOperator
impl Hash for ComplexOperator
Source§impl PartialEq for ComplexOperator
impl PartialEq for ComplexOperator
impl Copy for ComplexOperator
impl Eq for ComplexOperator
impl StructuralPartialEq for ComplexOperator
Auto Trait Implementations§
impl Freeze for ComplexOperator
impl RefUnwindSafe for ComplexOperator
impl Send for ComplexOperator
impl Sync for ComplexOperator
impl Unpin for ComplexOperator
impl UnwindSafe for ComplexOperator
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