pub struct UnaryOperator<A> {
pub args: A,
pub differentiable: bool,
pub op: UnaryOp,
}
Fields§
§args: A
§differentiable: bool
§op: UnaryOp
Implementations§
Auto Trait Implementations§
impl<A> Freeze for UnaryOperator<A>where
A: Freeze,
impl<A> RefUnwindSafe for UnaryOperator<A>where
A: RefUnwindSafe,
impl<A> Send for UnaryOperator<A>where
A: Send,
impl<A> Sync for UnaryOperator<A>where
A: Sync,
impl<A> Unpin for UnaryOperator<A>where
A: Unpin,
impl<A> UnwindSafe for UnaryOperator<A>where
A: 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