pub struct CapturingSession<L: DecisionLog, R: RuntimeInvoker> { /* private fields */ }Implementations§
Source§impl<L: DecisionLog, R: RuntimeInvoker> CapturingSession<L, R>
impl<L: DecisionLog, R: RuntimeInvoker> CapturingSession<L, R>
pub fn new( graph_id: GraphId, constraints: Constraints, inner_log: L, runtime: R, runtime_provenance: String, ) -> Self
pub fn new_with_provenance( graph_id: GraphId, constraints: Constraints, inner_log: L, runtime: R, adapter_provenance: String, runtime_provenance: String, ) -> Self
pub fn on_event(&mut self, event: ExternalEvent)
pub fn into_bundle(self) -> CaptureBundle
Auto Trait Implementations§
impl<L, R> Freeze for CapturingSession<L, R>
impl<L, R> RefUnwindSafe for CapturingSession<L, R>where
R: RefUnwindSafe,
L: RefUnwindSafe,
impl<L, R> Send for CapturingSession<L, R>
impl<L, R> Sync for CapturingSession<L, R>
impl<L, R> Unpin for CapturingSession<L, R>
impl<L, R> UnsafeUnpin for CapturingSession<L, R>where
R: UnsafeUnpin,
L: UnsafeUnpin,
impl<L, R> UnwindSafe for CapturingSession<L, R>where
R: UnwindSafe,
L: UnwindSafe,
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