pub struct ClientFinal<'a, P: 'a + AuthenticationProvider> {
pub authcid: &'a str,
/* private fields */
}
Expand description
Represents the stage after the server has generated its first response to the client. This struct is responsible for handling the client’s final message.
Fields§
§authcid: &'a str
Implementations§
Source§impl<'a, P: AuthenticationProvider> ClientFinal<'a, P>
impl<'a, P: AuthenticationProvider> ClientFinal<'a, P>
Sourcepub fn handle_client_final(
self,
client_final: &str,
) -> Result<ServerFinal, Error>
pub fn handle_client_final( self, client_final: &str, ) -> Result<ServerFinal, Error>
Handle the final client message. If the message is not well formed, or the authorization
header is invalid, then this will return an error. In all other cases (including when
authentication or authorization has failed), this will return Ok
along with a message to
send the client. In cases where authentication or authorization has failed, the message will
contain error information for the client. To check if authentication and authorization have
succeeded, use server_final
on the return value.
Auto Trait Implementations§
impl<'a, P> Freeze for ClientFinal<'a, P>
impl<'a, P> RefUnwindSafe for ClientFinal<'a, P>where
P: RefUnwindSafe,
impl<'a, P> Send for ClientFinal<'a, P>where
P: Sync,
impl<'a, P> Sync for ClientFinal<'a, P>where
P: Sync,
impl<'a, P> Unpin for ClientFinal<'a, P>
impl<'a, P> UnwindSafe for ClientFinal<'a, P>where
P: RefUnwindSafe,
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