pub struct FlowAnalysis {
pub entry_points: Vec<EntryPoint>,
pub flows: Vec<ExecutionFlow>,
pub criticality: Vec<CriticalityScore>,
pub stats: FlowStats,
}Fields§
§entry_points: Vec<EntryPoint>§flows: Vec<ExecutionFlow>§criticality: Vec<CriticalityScore>§stats: FlowStatsTrait Implementations§
Source§impl Clone for FlowAnalysis
impl Clone for FlowAnalysis
Source§fn clone(&self) -> FlowAnalysis
fn clone(&self) -> FlowAnalysis
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 FlowAnalysis
impl Debug for FlowAnalysis
Source§impl<'de> Deserialize<'de> for FlowAnalysis
impl<'de> Deserialize<'de> for FlowAnalysis
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 FlowAnalysis
impl RefUnwindSafe for FlowAnalysis
impl Send for FlowAnalysis
impl Sync for FlowAnalysis
impl Unpin for FlowAnalysis
impl UnsafeUnpin for FlowAnalysis
impl UnwindSafe for FlowAnalysis
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