Enum sqlite3_parser::ast::Expr [−][src]
Variants
Fields of FunctionCall
Fields of FunctionCallStar
name: Idfilter_over: Option<FunctionTail>Id(Id)Literal(Literal)Name(Name)Raise(ResolveType, Option<Name>)Unary(UnaryOperator, Box<Expr>)Variable(String)Implementations
impl Expr[src]
pub fn parenthesized(x: Expr) -> Expr[src]
pub fn id(xt: u16, x: Token) -> Expr[src]
pub fn collate(x: Expr, ct: u16, c: Token) -> Expr[src]
pub fn cast(x: Expr, type_name: Type) -> Expr[src]
pub fn binary(left: Expr, op: u16, right: Expr) -> Expr[src]
pub fn like(
lhs: Expr,
not: bool,
op: LikeOperator,
rhs: Expr,
escape: Option<Expr>
) -> Expr[src]
lhs: Expr,
not: bool,
op: LikeOperator,
rhs: Expr,
escape: Option<Expr>
) -> Expr
pub fn not_null(x: Expr, op: u16) -> Expr[src]
pub fn unary(op: UnaryOperator, x: Expr) -> Expr[src]
pub fn between(lhs: Expr, not: bool, start: Expr, end: Expr) -> Expr[src]
pub fn in_list(lhs: Expr, not: bool, rhs: Option<Vec<Expr>>) -> Expr[src]
pub fn in_select(lhs: Expr, not: bool, rhs: Select) -> Expr[src]
pub fn in_table(
lhs: Expr,
not: bool,
rhs: QualifiedName,
args: Option<Vec<Expr>>
) -> Expr[src]
lhs: Expr,
not: bool,
rhs: QualifiedName,
args: Option<Vec<Expr>>
) -> Expr
pub fn sub_query(query: Select) -> Expr[src]
Trait Implementations
impl Clone for Expr[src]
impl Debug for Expr[src]
impl Display for Expr[src]
impl Eq for Expr[src]
impl PartialEq<Expr> for Expr[src]
impl StructuralEq for Expr[src]
impl StructuralPartialEq for Expr[src]
impl ToTokens for Expr[src]
Auto Trait Implementations
impl RefUnwindSafe for Expr[src]
impl Send for Expr[src]
impl Sync for Expr[src]
impl Unpin for Expr[src]
impl UnwindSafe for Expr[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,