pub enum ExpressionOrSuper {
Expression(Box<ExpressionType>),
Super,
}Variants§
Expression(Box<ExpressionType>)
Super
Trait Implementations§
Source§impl Debug for ExpressionOrSuper
impl Debug for ExpressionOrSuper
Auto Trait Implementations§
impl Freeze for ExpressionOrSuper
impl RefUnwindSafe for ExpressionOrSuper
impl !Send for ExpressionOrSuper
impl !Sync for ExpressionOrSuper
impl Unpin for ExpressionOrSuper
impl UnwindSafe for ExpressionOrSuper
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