pub struct ClientFinal { /* private fields */ }
Expand description
The third state of the SCRAM mechanism after the first server message was successfully processed.
Implementations§
Source§impl ClientFinal
impl ClientFinal
Sourcepub fn client_final(self) -> (ServerFinal, String)
pub fn client_final(self) -> (ServerFinal, String)
Returns the next state and the final client message.
Call the
ServerFinal::handle_server_final
method to continue the SCRAM handshake.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ClientFinal
impl RefUnwindSafe for ClientFinal
impl Send for ClientFinal
impl Sync for ClientFinal
impl Unpin for ClientFinal
impl UnwindSafe for ClientFinal
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