pub enum CallArgument {
Positional(Value),
Named(Symbol, Value),
}Expand description
One argument at a neutral call boundary.
Variants§
Positional(Value)
An argument assigned by declaration order.
Named(Symbol, Value)
An argument assigned by parameter name.
Trait Implementations§
Source§impl Clone for CallArgument
impl Clone for CallArgument
Source§fn clone(&self) -> CallArgument
fn clone(&self) -> CallArgument
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl !RefUnwindSafe for CallArgument
impl !UnwindSafe for CallArgument
impl Freeze for CallArgument
impl Send for CallArgument
impl Sync for CallArgument
impl Unpin for CallArgument
impl UnsafeUnpin for CallArgument
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