pub struct Addition {
pub a: Term,
pub b: Term,
}
Expand description
An addition of two terms.
Fields§
§a: Term
The left-hand side of the addition.
b: Term
The right-hand side of the addition.
Trait Implementations§
impl StructuralPartialEq for Addition
Auto Trait Implementations§
impl Freeze for Addition
impl RefUnwindSafe for Addition
impl Send for Addition
impl Sync for Addition
impl Unpin for Addition
impl UnwindSafe for Addition
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