pub enum ExprOperand {
Col(String),
Field {
field: &'static Field,
modifier: String,
range: Option<RangeSpec>,
},
}Variants§
Trait Implementations§
Source§impl Clone for ExprOperand
impl Clone for ExprOperand
Source§fn clone(&self) -> ExprOperand
fn clone(&self) -> ExprOperand
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 ExprOperand
impl RefUnwindSafe for ExprOperand
impl Send for ExprOperand
impl Sync for ExprOperand
impl Unpin for ExprOperand
impl UnsafeUnpin for ExprOperand
impl UnwindSafe for ExprOperand
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