pub struct SourceFunction {
pub package_name: String,
pub name: String,
pub path_key: String,
pub relative_file: String,
pub line: usize,
pub end_line: usize,
pub complexity: u32,
}Fields§
§package_name: String§name: String§path_key: String§relative_file: String§line: usize§end_line: usize§complexity: u32Trait Implementations§
Source§impl Clone for SourceFunction
impl Clone for SourceFunction
Source§fn clone(&self) -> SourceFunction
fn clone(&self) -> SourceFunction
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 SourceFunction
impl RefUnwindSafe for SourceFunction
impl Send for SourceFunction
impl Sync for SourceFunction
impl Unpin for SourceFunction
impl UnsafeUnpin for SourceFunction
impl UnwindSafe for SourceFunction
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