Trait webdriver::httpapi::WebDriverExtensionRoute [] [src]

pub trait WebDriverExtensionRoute: Clone + Send + PartialEq {
    type Command: WebDriverExtensionCommand + 'static;
    fn command(&self, &Captures, &Json) -> WebDriverResult<WebDriverCommand<Self::Command>>;
}

Associated Types

Required Methods

fn command(&self, &Captures, &Json) -> WebDriverResult<WebDriverCommand<Self::Command>>

Implementors