enum OperationChain {
Operand(isize),
Chain(Vec<Operation>),
}
Variants§
Trait Implementations§
source§impl Clone for OperationChain
impl Clone for OperationChain
source§fn clone(&self) -> OperationChain
fn clone(&self) -> OperationChain
Returns a copy 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 moresource§impl Debug for OperationChain
impl Debug for OperationChain
source§impl PartialEq<OperationChain> for OperationChain
impl PartialEq<OperationChain> for OperationChain
source§fn eq(&self, other: &OperationChain) -> bool
fn eq(&self, other: &OperationChain) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for OperationChain
impl StructuralEq for OperationChain
impl StructuralPartialEq for OperationChain
Auto Trait Implementations§
impl RefUnwindSafe for OperationChain
impl Send for OperationChain
impl Sync for OperationChain
impl Unpin for OperationChain
impl UnwindSafe for OperationChain
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