pub struct FunctionSummary {
pub entry_address: u64,
pub size_bytes: usize,
pub basic_blocks: usize,
pub cyclomatic_complexity: usize,
pub calls_made: Vec<String>,
pub calls_received: Vec<String>,
pub has_loops: bool,
pub max_call_depth: usize,
}Fields§
§entry_address: u64§size_bytes: usize§basic_blocks: usize§cyclomatic_complexity: usize§calls_made: Vec<String>§calls_received: Vec<String>§has_loops: bool§max_call_depth: usizeTrait Implementations§
Source§impl Clone for FunctionSummary
impl Clone for FunctionSummary
Source§fn clone(&self) -> FunctionSummary
fn clone(&self) -> FunctionSummary
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 FunctionSummary
impl Debug for FunctionSummary
Source§impl<'de> Deserialize<'de> for FunctionSummary
impl<'de> Deserialize<'de> for FunctionSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FunctionSummary
impl RefUnwindSafe for FunctionSummary
impl Send for FunctionSummary
impl Sync for FunctionSummary
impl Unpin for FunctionSummary
impl UnwindSafe for FunctionSummary
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