pub struct FunctionArgs {
pub args: Vec<Box<Expr>>,
}
Expand description
called by func in Call
Fields§
§args: Vec<Box<Expr>>
Implementations§
Source§impl FunctionArgs
impl FunctionArgs
Trait Implementations§
Source§impl Clone for FunctionArgs
impl Clone for FunctionArgs
Source§fn clone(&self) -> FunctionArgs
fn clone(&self) -> FunctionArgs
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FunctionArgs
impl Debug for FunctionArgs
Source§impl Display for FunctionArgs
impl Display for FunctionArgs
Source§impl PartialEq for FunctionArgs
impl PartialEq for FunctionArgs
Source§impl Prettier for FunctionArgs
impl Prettier for FunctionArgs
Source§fn pretty(&self, level: usize, max: usize) -> String
fn pretty(&self, level: usize, max: usize) -> String
max param is short for max_characters_per_line.
Source§fn format(&self, level: usize, _max: usize) -> String
fn format(&self, level: usize, _max: usize) -> String
override format if expr needs to be split into multiple lines
Source§fn needs_split(&self, max: usize) -> bool
fn needs_split(&self, max: usize) -> bool
override needs_split to return false, in order not to split multiple lines
impl Eq for FunctionArgs
impl StructuralPartialEq for FunctionArgs
Auto Trait Implementations§
impl Freeze for FunctionArgs
impl !RefUnwindSafe for FunctionArgs
impl Send for FunctionArgs
impl Sync for FunctionArgs
impl Unpin for FunctionArgs
impl !UnwindSafe for FunctionArgs
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.