NoMail

Struct NoMail 

Source
pub struct NoMail;
Expand description

Every operation throws, so a bare evaluator is usable and a stray send is catchable rather than a panic.

Trait Implementations§

Source§

impl Default for NoMail

Source§

fn default() -> NoMail

Returns the “default value” for a type. Read more
Source§

impl Mail for NoMail

Source§

fn spawn(&mut self, _: Val) -> Result<Val, Val>

Source§

fn send(&mut self, _: &Val, _: Val) -> Result<Val, Val>

Source§

fn receive(&mut self) -> Option<Val>

None means the mailbox is empty, which is the only reason anything in this machine ever blocks.
Source§

fn monitor(&mut self, _: &Val) -> Result<Val, Val>

Source§

fn limit(&mut self, _: &Val, _: i64) -> Result<Val, Val>

Auto Trait Implementations§

§

impl Freeze for NoMail

§

impl RefUnwindSafe for NoMail

§

impl Send for NoMail

§

impl Sync for NoMail

§

impl Unpin for NoMail

§

impl UnwindSafe for NoMail

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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.