pub trait ArbitraryWriter<'val, World, Value: 'val>: Writer<World> {
    fn write<'life0, 'async_trait>(
        &'life0 mut self,
        val: Value
    ) -> Pin<Box<dyn Future<Output = ()> + 'async_trait>>
    where
        Self: 'async_trait,
        'val: 'async_trait,
        'life0: 'async_trait
; }
Expand description

Writer that also can output an arbitrary Value in addition to regular Cucumber events.

Required Methods§

Writes val to the Writer’s output.

Implementors§