pub enum ServerUserIdentityToken {
Empty,
AnonymousIdentityToken,
UserNameIdentityToken(UserIdentityToken),
X509IdentityToken(X509IdentityToken),
Invalid(ExtensionObject),
}Variants§
Empty
AnonymousIdentityToken
UserNameIdentityToken(UserIdentityToken)
X509IdentityToken(X509IdentityToken)
Invalid(ExtensionObject)
Auto Trait Implementations§
impl Freeze for ServerUserIdentityToken
impl RefUnwindSafe for ServerUserIdentityToken
impl Send for ServerUserIdentityToken
impl Sync for ServerUserIdentityToken
impl Unpin for ServerUserIdentityToken
impl UnwindSafe for ServerUserIdentityToken
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