pub enum ConnectionConversationTracking {
AlreadyTracked,
Untracked,
}Expand description
Whether a semantic request’s conversation already owns a connection slot.
Variants§
AlreadyTracked
The conversation is already counted and consumes no additional slot.
Untracked
The conversation needs its first connection-local slot.
Trait Implementations§
Source§impl Clone for ConnectionConversationTracking
impl Clone for ConnectionConversationTracking
Source§fn clone(&self) -> ConnectionConversationTracking
fn clone(&self) -> ConnectionConversationTracking
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 moreimpl Copy for ConnectionConversationTracking
impl Eq for ConnectionConversationTracking
impl StructuralPartialEq for ConnectionConversationTracking
Auto Trait Implementations§
impl Freeze for ConnectionConversationTracking
impl RefUnwindSafe for ConnectionConversationTracking
impl Send for ConnectionConversationTracking
impl Sync for ConnectionConversationTracking
impl Unpin for ConnectionConversationTracking
impl UnsafeUnpin for ConnectionConversationTracking
impl UnwindSafe for ConnectionConversationTracking
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