pub struct CallInfo {
pub function_name: String,
pub position: Position,
pub arguments_count: usize,
pub is_resolved: bool,
pub target_file: Option<PathBuf>,
}Expand description
Information about a function call
Fields§
§function_name: String§position: Position§arguments_count: usize§is_resolved: bool§target_file: Option<PathBuf>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CallInfo
impl RefUnwindSafe for CallInfo
impl Send for CallInfo
impl Sync for CallInfo
impl Unpin for CallInfo
impl UnsafeUnpin for CallInfo
impl UnwindSafe for CallInfo
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