Trait serde_tc::StubCall[][src]

pub trait StubCall: Send + Sync {
    type Error;
    fn call<'life0, 'async_trait>(
        &'life0 self,
        method: &'static str,
        params: String
    ) -> Pin<Box<dyn Future<Output = Result<String, Self::Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Associated Types

Required methods

Implementors