pub struct InteractiveGraphAnalyzer { /* private fields */ }Expand description
Interactive Graph Analyzer for advanced developer insights
Implementations§
Source§impl InteractiveGraphAnalyzer
impl InteractiveGraphAnalyzer
Sourcepub fn with_performance_data(self, data: HashMap<NodeIndex, f64>) -> Self
pub fn with_performance_data(self, data: HashMap<NodeIndex, f64>) -> Self
Add performance profiling data
Sourcepub fn with_analysis_data(
self,
shapes: HashMap<NodeIndex, ShapeInfo>,
types: HashMap<NodeIndex, DType>,
) -> Self
pub fn with_analysis_data( self, shapes: HashMap<NodeIndex, ShapeInfo>, types: HashMap<NodeIndex, DType>, ) -> Self
Add shape and type information
Sourcepub fn generate_comprehensive_report(&self) -> GraphAnalysisReport
pub fn generate_comprehensive_report(&self) -> GraphAnalysisReport
Generate comprehensive analysis report
Auto Trait Implementations§
impl Freeze for InteractiveGraphAnalyzer
impl RefUnwindSafe for InteractiveGraphAnalyzer
impl Send for InteractiveGraphAnalyzer
impl Sync for InteractiveGraphAnalyzer
impl Unpin for InteractiveGraphAnalyzer
impl UnsafeUnpin for InteractiveGraphAnalyzer
impl UnwindSafe for InteractiveGraphAnalyzer
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more