pub enum PredefinedItem {
Unary(UnaryOp),
Binary(BinaryOp),
NAry(NAryOp),
}
Expand description
A predefined operation
Variants§
Trait Implementations§
Source§impl Clone for PredefinedItem
impl Clone for PredefinedItem
Source§fn clone(&self) -> PredefinedItem
fn clone(&self) -> PredefinedItem
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 PredefinedItem
impl RefUnwindSafe for PredefinedItem
impl Send for PredefinedItem
impl Sync for PredefinedItem
impl Unpin for PredefinedItem
impl UnwindSafe for PredefinedItem
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