pub struct CompletionContext<S: EngineSpec> { /* private fields */ }Expand description
Context returned by a successful
UpdateEngine::execute.
This can be used to retrieve the value of a StepHandle. In the
future, it may also be extended to provide more information.
Implementations§
Source§impl<S: EngineSpec> CompletionContext<S>
impl<S: EngineSpec> CompletionContext<S>
Sourcepub fn token(&self) -> &StepHandleToken<S>
pub fn token(&self) -> &StepHandleToken<S>
Retrieves a token used to fetch the value out of a
StepHandle.
Trait Implementations§
Auto Trait Implementations§
impl<S> Freeze for CompletionContext<S>
impl<S> RefUnwindSafe for CompletionContext<S>where
S: RefUnwindSafe,
impl<S> Send for CompletionContext<S>
impl<S> Sync for CompletionContext<S>where
S: Sync,
impl<S> Unpin for CompletionContext<S>where
S: Unpin,
impl<S> UnsafeUnpin for CompletionContext<S>
impl<S> UnwindSafe for CompletionContext<S>where
S: 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