Struct prql_compiler::ir::pl::FuncCall
source · pub struct FuncCall {
pub name: Box<Expr>,
pub args: Vec<Expr>,
pub named_args: HashMap<String, Expr>,
}
Expand description
Function call.
Fields§
§name: Box<Expr>
§args: Vec<Expr>
§named_args: HashMap<String, Expr>
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for FuncCall
impl<'de> Deserialize<'de> for FuncCall
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for FuncCall
impl PartialEq for FuncCall
impl StructuralPartialEq for FuncCall
Auto Trait Implementations§
impl RefUnwindSafe for FuncCall
impl Send for FuncCall
impl Sync for FuncCall
impl Unpin 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