pub enum InactiveApplicationSession {
Missing,
Expired {
expired_at_ns: u64,
},
StaleFleet,
StaleRole,
StaleGeneration {
session_generation: u64,
current_generation: u64,
},
InadmissibleSubject,
}Expand description
Exact inactive classification for a physically absent or invalid caller session.
Variants§
Trait Implementations§
Source§impl Clone for InactiveApplicationSession
impl Clone for InactiveApplicationSession
Source§fn clone(&self) -> InactiveApplicationSession
fn clone(&self) -> InactiveApplicationSession
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 InactiveApplicationSession
impl Debug for InactiveApplicationSession
Source§impl<'de> Deserialize<'de> for InactiveApplicationSession
impl<'de> Deserialize<'de> for InactiveApplicationSession
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for InactiveApplicationSession
impl StructuralPartialEq for InactiveApplicationSession
Auto Trait Implementations§
impl Freeze for InactiveApplicationSession
impl RefUnwindSafe for InactiveApplicationSession
impl Send for InactiveApplicationSession
impl Sync for InactiveApplicationSession
impl Unpin for InactiveApplicationSession
impl UnsafeUnpin for InactiveApplicationSession
impl UnwindSafe for InactiveApplicationSession
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