pub enum CompareOperand {
Symbol(Symbol),
Macro(FunctionCall),
}Variants§
Symbol(Symbol)
Macro(FunctionCall)
Trait Implementations§
Source§impl Clone for CompareOperand
impl Clone for CompareOperand
Source§fn clone(&self) -> CompareOperand
fn clone(&self) -> CompareOperand
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 moreSource§impl Debug for CompareOperand
impl Debug for CompareOperand
Source§impl<'de> Deserialize<'de> for CompareOperand
impl<'de> Deserialize<'de> for CompareOperand
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for CompareOperand
Available on crate feature display only.
impl Display for CompareOperand
Available on crate feature
display only.Source§impl Hash for CompareOperand
impl Hash for CompareOperand
Source§impl PartialEq for CompareOperand
impl PartialEq for CompareOperand
Source§impl Serialize for CompareOperand
impl Serialize for CompareOperand
impl StructuralPartialEq for CompareOperand
Auto Trait Implementations§
impl Freeze for CompareOperand
impl RefUnwindSafe for CompareOperand
impl Send for CompareOperand
impl Sync for CompareOperand
impl Unpin for CompareOperand
impl UnsafeUnpin for CompareOperand
impl UnwindSafe for CompareOperand
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