pub struct CallSite {
pub name: String,
pub qualifier: Vec<String>,
}Expand description
A call expression extracted from the parsed tree, not source text.
Fields§
§name: String§qualifier: Vec<String>Path or receiver segments ahead of the callee (Bar in Bar::run,
foo in foo.run()). Empty for a bare run().
Trait Implementations§
impl Eq for CallSite
impl StructuralPartialEq for CallSite
Auto Trait Implementations§
impl Freeze for CallSite
impl RefUnwindSafe for CallSite
impl Send for CallSite
impl Sync for CallSite
impl Unpin for CallSite
impl UnsafeUnpin for CallSite
impl UnwindSafe for CallSite
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