spin_world::wasi::cli0_2_0::exit

Trait Host

Source
pub trait Host: Send {
    // Required method
    fn exit<'life0, 'async_trait>(
        &'life0 mut self,
        status: Result<(), ()>,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn exit<'life0, 'async_trait>( &'life0 mut self, status: Result<(), ()>, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Exit the current instance and any linked instances.

Implementations on Foreign Types§

Source§

impl<_T: Host + ?Sized + Send> Host for &mut _T

Source§

fn exit<'life0, 'async_trait>( &'life0 mut self, status: Result<(), ()>, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Exit the current instance and any linked instances.

Implementors§