pub struct ExprNeg<E>where
E: Expr,{ /* private fields */ }Expand description
A lazy negation expression.
Implementations§
Trait Implementations§
Source§impl<E> Expr for ExprNeg<E>where
E: Expr,
impl<E> Expr for ExprNeg<E>where
E: Expr,
Source§fn eval(&self) -> Mat<<ExprNeg<E> as Expr>::Elem>
fn eval(&self) -> Mat<<ExprNeg<E> as Expr>::Elem>
Evaluates the expression and returns the result as an owned matrix.
Source§fn eval_into(&self, target: &mut Mat<<ExprNeg<E> as Expr>::Elem>)
fn eval_into(&self, target: &mut Mat<<ExprNeg<E> as Expr>::Elem>)
Evaluates the expression into an existing matrix.
Source§fn t(self) -> ExprTranspose<Self>
fn t(self) -> ExprTranspose<Self>
Wraps this expression in a transpose expression.
Auto Trait Implementations§
impl<E> Freeze for ExprNeg<E>where
E: Freeze,
impl<E> RefUnwindSafe for ExprNeg<E>where
E: RefUnwindSafe,
impl<E> Send for ExprNeg<E>where
E: Send,
impl<E> Sync for ExprNeg<E>where
E: Sync,
impl<E> Unpin for ExprNeg<E>where
E: Unpin,
impl<E> UnwindSafe for ExprNeg<E>where
E: UnwindSafe,
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