spin_world::fermyon::spin2_0_0::variables

Trait Host

Source
pub trait Host: Send {
    // Required methods
    fn get<'life0, 'async_trait>(
        &'life0 mut self,
        name: String,
    ) -> Pin<Box<dyn Future<Output = Result<String, Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn convert_error(&mut self, err: Error) -> Result<Error>;
}

Required Methods§

Source

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

Get an application variable value for the current component.

The name must match one defined in in the component manifest.

Source

fn convert_error(&mut self, err: Error) -> Result<Error>

Implementations on Foreign Types§

Source§

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

Source§

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

Get an application variable value for the current component.

The name must match one defined in in the component manifest.

Source§

fn convert_error(&mut self, err: Error) -> Result<Error>

Implementors§