pub struct CallLiteral {
pub ident: Identifier,
pub args: Vec<ExprKind>,
pub kwargs: Vec<Kwarg>,
}
Fields§
§ident: Identifier
§args: Vec<ExprKind>
§kwargs: Vec<Kwarg>
Trait Implementations§
Source§impl Clone for CallLiteral
impl Clone for CallLiteral
Source§fn clone(&self) -> CallLiteral
fn clone(&self) -> CallLiteral
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 CallLiteral
impl Debug for CallLiteral
Source§impl Display for CallLiteral
impl Display for CallLiteral
Source§impl PartialEq for CallLiteral
impl PartialEq for CallLiteral
impl StructuralPartialEq for CallLiteral
Auto Trait Implementations§
impl Freeze for CallLiteral
impl RefUnwindSafe for CallLiteral
impl Send for CallLiteral
impl Sync for CallLiteral
impl Unpin for CallLiteral
impl UnwindSafe for CallLiteral
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