pub struct FuncCall {
pub name: String,
pub distinct: bool,
pub args: FuncArgs,
}Expand description
SP27: a parsed function call. name is lowercased by the lexer.
Fields§
§name: String§distinct: booltrue for f(DISTINCT …). ALL (the default) parses to false.
args: FuncArgsTrait Implementations§
impl StructuralPartialEq for FuncCall
Auto Trait Implementations§
impl Freeze for FuncCall
impl RefUnwindSafe for FuncCall
impl Send for FuncCall
impl Sync for FuncCall
impl Unpin for FuncCall
impl UnsafeUnpin for FuncCall
impl UnwindSafe for FuncCall
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