pub struct CallArg {
pub name: Option<String>,
pub value: Node,
}Expand description
Represents a single argument in a function call or decorator. Can be positional or named (keyword).
Fields§
§name: Option<String>§value: NodeTrait Implementations§
impl StructuralPartialEq for CallArg
Auto Trait Implementations§
impl Freeze for CallArg
impl RefUnwindSafe for CallArg
impl Send for CallArg
impl Sync for CallArg
impl Unpin for CallArg
impl UnsafeUnpin for CallArg
impl UnwindSafe for CallArg
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