pub struct AuthenticationTap<'a, H> {
pub control: &'a mut AuthenticationControl,
pub handler: H,
}
Expand description
Authentication state and handler used to tap into the client authentication process in an event handler.
Fields§
§control: &'a mut AuthenticationControl
§handler: H
An event handler that authenticates a client with an AP.
The event handler must accept AuthenticationControl
state and AuthenticationEvent
events.
Trait Implementations§
Auto Trait Implementations§
impl<'a, H> Freeze for AuthenticationTap<'a, H>where
H: Freeze,
impl<'a, H> !RefUnwindSafe for AuthenticationTap<'a, H>
impl<'a, H> Send for AuthenticationTap<'a, H>where
H: Send,
impl<'a, H> !Sync for AuthenticationTap<'a, H>
impl<'a, H> Unpin for AuthenticationTap<'a, H>where
H: Unpin,
impl<'a, H> !UnwindSafe for AuthenticationTap<'a, H>
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