pub enum ParseExpression {
String(String),
Null(),
}Variants§
Trait Implementations§
Source§impl Clone for ParseExpression
impl Clone for ParseExpression
Source§fn clone(&self) -> ParseExpression
fn clone(&self) -> ParseExpression
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 ParseExpression
impl Debug for ParseExpression
Source§impl PartialEq for ParseExpression
impl PartialEq for ParseExpression
impl StructuralPartialEq for ParseExpression
Auto Trait Implementations§
impl Freeze for ParseExpression
impl RefUnwindSafe for ParseExpression
impl Send for ParseExpression
impl Sync for ParseExpression
impl Unpin for ParseExpression
impl UnwindSafe for ParseExpression
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