pub struct ExtractedCall {
pub caller_name: String,
pub callee_name: String,
pub line: usize,
}Expand description
A function/method call found in the source
Fields§
§caller_name: String§callee_name: String§line: usizeTrait Implementations§
Source§impl Clone for ExtractedCall
impl Clone for ExtractedCall
Source§fn clone(&self) -> ExtractedCall
fn clone(&self) -> ExtractedCall
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 moreAuto Trait Implementations§
impl Freeze for ExtractedCall
impl RefUnwindSafe for ExtractedCall
impl Send for ExtractedCall
impl Sync for ExtractedCall
impl Unpin for ExtractedCall
impl UnsafeUnpin for ExtractedCall
impl UnwindSafe for ExtractedCall
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