pub enum LoginInfo<'a> {
Password(Password<'a>),
Token(Token<'a>),
ApplicationService(ApplicationService<'a>),
// some variants omitted
}Available on crate features
client or server only.Expand description
The authentication mechanism.
To construct the custom LoginInfo variant you first have to construct
IncomingLoginInfo::new and then call IncomingLoginInfo::to_outgoing on it.
Variants§
Password(Password<'a>)
An identifier and password are supplied to authenticate.
Token(Token<'a>)
Token-based login.
ApplicationService(ApplicationService<'a>)
Application Service-specific login.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for LoginInfo<'a>
impl<'a> RefUnwindSafe for LoginInfo<'a>
impl<'a> Send for LoginInfo<'a>
impl<'a> Sync for LoginInfo<'a>
impl<'a> Unpin for LoginInfo<'a>
impl<'a> UnwindSafe for LoginInfo<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)