pub struct FuncCall {
pub name: FuncName,
pub args: FuncArgs,
/* private fields */
}
Expand description
Type representing a function call.
Fields§
§name: FuncName
The function name.
args: FuncArgs
The arguments between the function call’s (
and )
argument delimiters.
Implementations§
Trait Implementations§
Source§impl From<FuncCall> for Expression
impl From<FuncCall> for Expression
impl Eq 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 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