pub enum SessionLookupFact {
NotProvided,
Miss {
key: String,
},
Hit {
key: String,
session_id: String,
},
}Expand description
Soft lookup outcome for a single attach rule (CLI performed the I/O).
Variants§
NotProvided
Rule not applicable (no key/id to look up).
Miss
Key was present; no active compatible match.
Hit
Active session found for the key.
Trait Implementations§
Source§impl Clone for SessionLookupFact
impl Clone for SessionLookupFact
Source§fn clone(&self) -> SessionLookupFact
fn clone(&self) -> SessionLookupFact
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 SessionLookupFact
impl Debug for SessionLookupFact
Source§impl Default for SessionLookupFact
impl Default for SessionLookupFact
Source§fn default() -> SessionLookupFact
fn default() -> SessionLookupFact
Returns the “default value” for a type. Read more
impl Eq for SessionLookupFact
Source§impl PartialEq for SessionLookupFact
impl PartialEq for SessionLookupFact
impl StructuralPartialEq for SessionLookupFact
Auto Trait Implementations§
impl Freeze for SessionLookupFact
impl RefUnwindSafe for SessionLookupFact
impl Send for SessionLookupFact
impl Sync for SessionLookupFact
impl Unpin for SessionLookupFact
impl UnsafeUnpin for SessionLookupFact
impl UnwindSafe for SessionLookupFact
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