pub struct AdvancedPipelineDebugger { /* private fields */ }Expand description
Advanced pipeline debugger with interactive capabilities
Implementations§
Source§impl AdvancedPipelineDebugger
impl AdvancedPipelineDebugger
pub fn new(config: DebugConfig) -> Self
Sourcepub fn start_session(
&self,
session_id: String,
pipeline_id: String,
) -> SklResult<DebugSessionHandle>
pub fn start_session( &self, session_id: String, pipeline_id: String, ) -> SklResult<DebugSessionHandle>
Start a new debugging session
Sourcepub fn get_session(&self, session_id: &str) -> Option<DebugSessionHandle>
pub fn get_session(&self, session_id: &str) -> Option<DebugSessionHandle>
Get session handle for existing session
Sourcepub fn list_sessions(&self) -> Vec<String>
pub fn list_sessions(&self) -> Vec<String>
List all active sessions
Sourcepub fn get_debug_statistics(&self) -> DebugStatistics
pub fn get_debug_statistics(&self) -> DebugStatistics
Get debugging statistics
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AdvancedPipelineDebugger
impl RefUnwindSafe for AdvancedPipelineDebugger
impl Send for AdvancedPipelineDebugger
impl Sync for AdvancedPipelineDebugger
impl Unpin for AdvancedPipelineDebugger
impl UnwindSafe for AdvancedPipelineDebugger
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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