pub struct ProfilingDebuggingManager { /* private fields */ }Expand description
Profiling and debugging integration manager
Implementations§
Source§impl ProfilingDebuggingManager
impl ProfilingDebuggingManager
pub fn new(config: IntegrationConfig) -> Self
pub fn with_default_config() -> Self
pub fn initialize(&mut self) -> AutogradResult<()>
pub fn list_available_profilers(&self) -> Vec<ProfilingTool>
pub fn list_available_debuggers(&self) -> Vec<DebuggingTool>
pub fn start_profiling_session( &mut self, config: ProfilingConfig, ) -> AutogradResult<ProfilingSession>
pub fn stop_profiling_session( &mut self, session_id: &str, ) -> AutogradResult<ProfilingReport>
pub fn start_debugging_session( &mut self, config: DebuggingConfig, ) -> AutogradResult<DebuggingSession>
pub fn stop_debugging_session( &mut self, session_id: &str, ) -> AutogradResult<DebuggingReport>
pub fn profile_operation<F, T>(
&mut self,
operation_name: &str,
operation: F,
) -> AutogradResult<(T, Option<ProfilingReport>)>where
F: FnOnce() -> AutogradResult<T>,
pub fn get_integration_report(&self) -> IntegrationReport
Auto Trait Implementations§
impl !RefUnwindSafe for ProfilingDebuggingManager
impl !UnwindSafe for ProfilingDebuggingManager
impl Freeze for ProfilingDebuggingManager
impl Send for ProfilingDebuggingManager
impl Sync for ProfilingDebuggingManager
impl Unpin for ProfilingDebuggingManager
impl UnsafeUnpin for ProfilingDebuggingManager
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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