[][src]Trait kes::console::Console

pub trait Console {
    fn print(&mut self, v: Value);
fn new_line(&mut self);
#[must_use] fn wait<'life0, 'async_trait>(
        &'life0 mut self
    ) -> Pin<Box<dyn Future<Output = ()> + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

fn print(&mut self, v: Value)

fn new_line(&mut self)

#[must_use]fn wait<'life0, 'async_trait>(
    &'life0 mut self
) -> Pin<Box<dyn Future<Output = ()> + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Loading content...

Implementations on Foreign Types

impl<'a, C: Console> Console for &'a mut C[src]

Loading content...

Implementors

Loading content...