struct WaitContextPoller(Rc<WaitContext<Token>>);Expand description
Newtype to implement SessionPoller on Rc<WaitContext<Token>>.
Tuple Fields§
§0: Rc<WaitContext<Token>>Trait Implementations§
Source§impl Clone for WaitContextPoller
impl Clone for WaitContextPoller
Source§fn clone(&self) -> WaitContextPoller
fn clone(&self) -> WaitContextPoller
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl SessionPoller for WaitContextPoller
impl SessionPoller for WaitContextPoller
Source§fn add_session(
&self,
session: BorrowedFd<'_>,
session_id: u32,
) -> Result<(), i32>
fn add_session( &self, session: BorrowedFd<'_>, session_id: u32, ) -> Result<(), i32>
Add a newly created
session to be polled. Read moreSource§fn remove_session(&self, session: BorrowedFd<'_>)
fn remove_session(&self, session: BorrowedFd<'_>)
Stop polling all activity on
session.Auto Trait Implementations§
impl Freeze for WaitContextPoller
impl RefUnwindSafe for WaitContextPoller
impl !Send for WaitContextPoller
impl !Sync for WaitContextPoller
impl Unpin for WaitContextPoller
impl UnwindSafe for WaitContextPoller
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