pub struct FuncCall {
pub ident: Decorated<Ident>,
pub args: FuncArgs,
/* private fields */
}
Expand description
Type representing a function call.
Fields§
§ident: Decorated<Ident>
The function identifier (or 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
source§impl PartialEq<FuncCall> for FuncCall
impl PartialEq<FuncCall> for FuncCall
impl Eq for FuncCall
impl StructuralEq 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