pub enum FuncArgs {
Star,
Exprs(Vec<Expr>),
}Expand description
SP27: a function call’s argument list. Star is the f(*) form (only
count(*) is meaningful); Exprs is a (possibly empty) positional list.
Variants§
Trait Implementations§
impl StructuralPartialEq for FuncArgs
Auto Trait Implementations§
impl Freeze for FuncArgs
impl RefUnwindSafe for FuncArgs
impl Send for FuncArgs
impl Sync for FuncArgs
impl Unpin for FuncArgs
impl UnsafeUnpin for FuncArgs
impl UnwindSafe for FuncArgs
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