pub struct ClientLoginStartResult<CS: CipherSuite> {
pub message: CredentialRequest<CS>,
pub state: ClientLogin<CS>,
}Expand description
Contains the fields that are returned by a client login start
Fields§
§message: CredentialRequest<CS>The message to send to the server to begin the login protocol
state: ClientLogin<CS>The state that the client must keep in order to complete the protocol
Trait Implementations§
Source§impl<CS: CipherSuite> Clone for ClientLoginStartResult<CS>
impl<CS: CipherSuite> Clone for ClientLoginStartResult<CS>
Auto Trait Implementations§
impl<CS> Freeze for ClientLoginStartResult<CS>where
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE1Message: Freeze,
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE1State: Freeze,
<<<CS as CipherSuite>::OprfCs as CipherSuite>::Group as Group>::Elem: Freeze,
<<<CS as CipherSuite>::OprfCs as CipherSuite>::Group as Group>::Scalar: Freeze,
impl<CS> RefUnwindSafe for ClientLoginStartResult<CS>where
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE1Message: RefUnwindSafe,
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE1State: RefUnwindSafe,
<<<CS as CipherSuite>::OprfCs as CipherSuite>::Group as Group>::Elem: RefUnwindSafe,
<<<CS as CipherSuite>::OprfCs as CipherSuite>::Group as Group>::Scalar: RefUnwindSafe,
impl<CS> Send for ClientLoginStartResult<CS>where
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE1Message: Send,
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE1State: Send,
<<<CS as CipherSuite>::OprfCs as CipherSuite>::Group as Group>::Elem: Send,
<<<CS as CipherSuite>::OprfCs as CipherSuite>::Group as Group>::Scalar: Send,
impl<CS> Sync for ClientLoginStartResult<CS>where
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE1Message: Sync,
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE1State: Sync,
<<<CS as CipherSuite>::OprfCs as CipherSuite>::Group as Group>::Elem: Sync,
<<<CS as CipherSuite>::OprfCs as CipherSuite>::Group as Group>::Scalar: Sync,
impl<CS> Unpin for ClientLoginStartResult<CS>where
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE1Message: Unpin,
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE1State: Unpin,
<<<CS as CipherSuite>::OprfCs as CipherSuite>::Group as Group>::Elem: Unpin,
<<<CS as CipherSuite>::OprfCs as CipherSuite>::Group as Group>::Scalar: Unpin,
impl<CS> UnsafeUnpin for ClientLoginStartResult<CS>where
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE1Message: UnsafeUnpin,
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE1State: UnsafeUnpin,
<<<CS as CipherSuite>::OprfCs as CipherSuite>::Group as Group>::Elem: UnsafeUnpin,
<<<CS as CipherSuite>::OprfCs as CipherSuite>::Group as Group>::Scalar: UnsafeUnpin,
impl<CS> UnwindSafe for ClientLoginStartResult<CS>where
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE1Message: UnwindSafe,
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE1State: UnwindSafe,
<<<CS as CipherSuite>::OprfCs as CipherSuite>::Group as Group>::Elem: UnwindSafe,
<<<CS as CipherSuite>::OprfCs as CipherSuite>::Group as Group>::Scalar: UnwindSafe,
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