pub struct ComplexExpr {
pub re: Expr,
pub im: Expr,
}Expand description
A complex symbolic expression (real, imaginary pair).
Fields§
§re: Expr§im: ExprImplementations§
Source§impl ComplexExpr
impl ComplexExpr
Trait Implementations§
Source§impl Clone for ComplexExpr
impl Clone for ComplexExpr
Source§fn clone(&self) -> ComplexExpr
fn clone(&self) -> ComplexExpr
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 moreAuto Trait Implementations§
impl Freeze for ComplexExpr
impl RefUnwindSafe for ComplexExpr
impl Send for ComplexExpr
impl Sync for ComplexExpr
impl Unpin for ComplexExpr
impl UnsafeUnpin for ComplexExpr
impl UnwindSafe for ComplexExpr
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