pub struct ArithmeticOperand<N: Node> {
pub op: ArithmeticOperator,
pub operand: Transform<N>,
}Fields§
§op: ArithmeticOperator§operand: Transform<N>Implementations§
Source§impl<N: Node> ArithmeticOperand<N>
impl<N: Node> ArithmeticOperand<N>
pub fn new(op: ArithmeticOperator, operand: Transform<N>) -> Self
Trait Implementations§
Auto Trait Implementations§
impl<N> !Send for ArithmeticOperand<N>
impl<N> !Sync for ArithmeticOperand<N>
impl<N> Freeze for ArithmeticOperand<N>where
N: Freeze,
impl<N> RefUnwindSafe for ArithmeticOperand<N>where
N: RefUnwindSafe,
impl<N> Unpin for ArithmeticOperand<N>where
N: Unpin,
impl<N> UnsafeUnpin for ArithmeticOperand<N>where
N: UnsafeUnpin,
impl<N> UnwindSafe for ArithmeticOperand<N>where
N: 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