pub trait WebDriverExtensionRoute:
Clone
+ Send
+ PartialEq {
type Command: WebDriverExtensionCommand + 'static;
// Required method
fn command(
&self,
_: &Parameters,
_: &Value,
) -> WebDriverResult<WebDriverCommand<Self::Command>>;
}
Required Associated Types§
type Command: WebDriverExtensionCommand + 'static
Required Methods§
fn command( &self, _: &Parameters, _: &Value, ) -> WebDriverResult<WebDriverCommand<Self::Command>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.