Struct erin::RuntimeHandle

source ·
pub struct RuntimeHandle<'a> { /* private fields */ }
Expand description

Passed to a process on wakeup. Used to register and unregister new I/O sources and timers.

Implementations§

source§

impl<'a> RuntimeHandle<'a>

The R parameter represents the underlying stream type, eg. net::TcpStream.

source

pub fn register_io(&self, fd: &impl AsRawFd, events: Interest) -> IoToken

Register a new I/O source.

To change the interest of a source, use [reregister_io] instead.

source

pub fn reregister_io(&self, token: IoToken, events: Interest)

Change the events you are interested in for this I/O source.

source

pub fn unregister_io(&self, token: IoToken)

Stop receiving eventsd for this I/O source.

source

pub fn set_alarm(&self, time: SystemTime) -> TimerToken

Set a timer to wake you up at the given time.

source

pub fn set_timer(&self, timer: Duration) -> TimerToken

Set a timer to be woken up after the given duration.

source

pub fn cancel_timer(&self, token: TimerToken)

Cancel previously set timer or alarm.

source

pub fn cancel_all_timers(&self)

Cancel all previously set timers and alarms.

source

pub fn new_waker(&self) -> Waker

Auto Trait Implementations§

§

impl<'a> !RefUnwindSafe for RuntimeHandle<'a>

§

impl<'a> Send for RuntimeHandle<'a>

§

impl<'a> !Sync for RuntimeHandle<'a>

§

impl<'a> Unpin for RuntimeHandle<'a>

§

impl<'a> !UnwindSafe for RuntimeHandle<'a>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.