pub struct IdentityServerHandler;Expand description
Identity handler used until contextual middleware is configured.
Trait Implementations§
Source§impl Clone for IdentityServerHandler
impl Clone for IdentityServerHandler
Source§fn clone(&self) -> IdentityServerHandler
fn clone(&self) -> IdentityServerHandler
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for IdentityServerHandler
Source§impl Debug for IdentityServerHandler
impl Debug for IdentityServerHandler
Source§impl Default for IdentityServerHandler
impl Default for IdentityServerHandler
Source§fn default() -> IdentityServerHandler
fn default() -> IdentityServerHandler
Returns the “default value” for a type. Read more
impl Eq for IdentityServerHandler
Source§impl<C> MiddlewareFactory<C> for IdentityServerHandler
impl<C> MiddlewareFactory<C> for IdentityServerHandler
Source§impl PartialEq for IdentityServerHandler
impl PartialEq for IdentityServerHandler
Source§impl<S, C> ServerMiddleware<S, C> for IdentityServerHandler
impl<S, C> ServerMiddleware<S, C> for IdentityServerHandler
Source§fn pre_startup(
&mut self,
_context: &Context,
_state: &mut State,
message: PreStartupMessage,
) -> PreStartupMessage
fn pre_startup( &mut self, _context: &Context, _state: &mut State, message: PreStartupMessage, ) -> PreStartupMessage
Intercepts one pre-startup packet before protocol dispatch.
Source§fn startup(
&mut self,
_context: &Context,
_state: &mut State,
message: StartupMessage,
) -> StartupMessage
fn startup( &mut self, _context: &Context, _state: &mut State, message: StartupMessage, ) -> StartupMessage
Intercepts the owned startup message before authentication.
Source§fn cancellation(
&mut self,
_context: &Context,
_state: &mut State,
request: CancellationRequest,
) -> CancellationRequest
fn cancellation( &mut self, _context: &Context, _state: &mut State, request: CancellationRequest, ) -> CancellationRequest
Intercepts an out-of-band cancellation request before it is returned.
Source§fn frontend(
&mut self,
_context: &Context,
_state: &mut State,
message: FrontendMessage,
) -> FrontendMessage
fn frontend( &mut self, _context: &Context, _state: &mut State, message: FrontendMessage, ) -> FrontendMessage
Intercepts one message received from the client.
Source§fn backend(
&mut self,
_context: &Context,
_state: &mut State,
message: BackendMessage,
) -> BackendMessage
fn backend( &mut self, _context: &Context, _state: &mut State, message: BackendMessage, ) -> BackendMessage
Intercepts one message sent by the server.
impl StructuralPartialEq for IdentityServerHandler
Auto Trait Implementations§
impl Freeze for IdentityServerHandler
impl RefUnwindSafe for IdentityServerHandler
impl Send for IdentityServerHandler
impl Sync for IdentityServerHandler
impl Unpin for IdentityServerHandler
impl UnsafeUnpin for IdentityServerHandler
impl UnwindSafe for IdentityServerHandler
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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