pub enum ServerUserIdentityToken {
Empty,
AnonymousIdentityToken,
UserNameIdentityToken(UserIdentityToken),
X509IdentityToken(X509IdentityToken),
Invalid(ExtensionObject),
}Variants
Empty
AnonymousIdentityToken
UserNameIdentityToken(UserIdentityToken)
X509IdentityToken(X509IdentityToken)
Invalid(ExtensionObject)
Auto Trait Implementations
impl RefUnwindSafe for ServerUserIdentityToken
impl Send for ServerUserIdentityToken
impl Sync for ServerUserIdentityToken
impl Unpin for ServerUserIdentityToken
impl UnwindSafe for ServerUserIdentityToken
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more