pub struct AuthReq {
pub is_direct: bool,
pub token: Vec<u8>,
pub participant_id: ParticipantId,
pub response_tx: Sender<AuthResponse>,
}Fields§
§is_direct: bool§token: Vec<u8>§participant_id: ParticipantId§response_tx: Sender<AuthResponse>Auto Trait Implementations§
impl Freeze for AuthReq
impl !RefUnwindSafe for AuthReq
impl Send for AuthReq
impl Sync for AuthReq
impl Unpin for AuthReq
impl !UnwindSafe for AuthReq
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