[][src]Trait thirtyfour::RemoteConnectionAsync

pub trait RemoteConnectionAsync: Debug + Send + Sync {
#[must_use]    fn execute<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        session_id: &'life1 SessionId,
        command: Command<'life2>
    ) -> Pin<Box<dyn Future<Output = WebDriverResult<Value>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        Self: 'async_trait
; }

Required methods

#[must_use]fn execute<'life0, 'life1, 'life2, 'async_trait>(
    &'life0 self,
    session_id: &'life1 SessionId,
    command: Command<'life2>
) -> Pin<Box<dyn Future<Output = WebDriverResult<Value>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    'life2: 'async_trait,
    Self: 'async_trait, 

Loading content...

Implementors

impl RemoteConnectionAsync for ReqwestDriverAsync[src]

fn execute<'life0, 'life1, 'life2, 'async_trait>(
    &'life0 self,
    session_id: &'life1 SessionId,
    command: Command<'life2>
) -> Pin<Box<dyn Future<Output = WebDriverResult<Value>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    'life2: 'async_trait,
    Self: 'async_trait, 
[src]

Execute the specified command and return the data as serde_json::Value.

Loading content...