pub enum SessionControl {
Continue,
Complete(Option<String>),
}Expand description
Application decision after completing a semantic primary-session transition.
Variants§
Continue
Prepare another fresh provider round.
Complete(Option<String>)
Finish the logical turn with the optional externally visible answer.
Trait Implementations§
Source§impl Clone for SessionControl
impl Clone for SessionControl
Source§fn clone(&self) -> SessionControl
fn clone(&self) -> SessionControl
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SessionControl
impl Debug for SessionControl
impl Eq for SessionControl
Source§impl PartialEq for SessionControl
impl PartialEq for SessionControl
impl StructuralPartialEq for SessionControl
Auto Trait Implementations§
impl Freeze for SessionControl
impl RefUnwindSafe for SessionControl
impl Send for SessionControl
impl Sync for SessionControl
impl Unpin for SessionControl
impl UnsafeUnpin for SessionControl
impl UnwindSafe for SessionControl
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.