pub struct AsyncTokenManager<T: ICreateController + 'static> { /* private fields */ }
Expand description
Manages asynchronous tokens, including their creation, timeout checks, and disconnection handling.
Implementations§
Source§impl<T: ICreateController + 'static> AsyncTokenManager<T>
impl<T: ICreateController + 'static> AsyncTokenManager<T>
Sourcepub fn get_all_tokens(&self) -> Vec<NetxToken<T::Controller>> ⓘ
pub fn get_all_tokens(&self) -> Vec<NetxToken<T::Controller>> ⓘ
Trait Implementations§
impl<T: ICreateController + 'static> Send for AsyncTokenManager<T>
impl<T: ICreateController + 'static> Sync for AsyncTokenManager<T>
Auto Trait Implementations§
impl<T> Freeze for AsyncTokenManager<T>where
T: Freeze,
impl<T> !RefUnwindSafe for AsyncTokenManager<T>
impl<T> Unpin for AsyncTokenManager<T>where
T: Unpin,
impl<T> !UnwindSafe for AsyncTokenManager<T>
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