pub enum AuthenticationState {
Unauthenticated,
Authenticated,
}Expand description
Connection authentication state presented to the inbound participant gate.
Variants§
Unauthenticated
Shared connection authentication has not succeeded.
Authenticated
Shared connection authentication has succeeded.
Trait Implementations§
Source§impl Clone for AuthenticationState
impl Clone for AuthenticationState
Source§fn clone(&self) -> AuthenticationState
fn clone(&self) -> AuthenticationState
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 AuthenticationState
Source§impl Debug for AuthenticationState
impl Debug for AuthenticationState
impl Eq for AuthenticationState
Source§impl PartialEq for AuthenticationState
impl PartialEq for AuthenticationState
impl StructuralPartialEq for AuthenticationState
Auto Trait Implementations§
impl Freeze for AuthenticationState
impl RefUnwindSafe for AuthenticationState
impl Send for AuthenticationState
impl Sync for AuthenticationState
impl Unpin for AuthenticationState
impl UnsafeUnpin for AuthenticationState
impl UnwindSafe for AuthenticationState
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