Trait chrome_remote_interface_model::Command[][src]

pub trait Command: Serialize {
    type Return: for<'a> Deserialize<'a>;

    const METHOD: &'static str;
    fn into_request(
        self,
        session_id: Option<SessionId>,
        id: u32
    ) -> Request<Self>
    where
        Self: Sized
, { ... } }
Expand description

Chrome DevTools Protocol Command.

Associated Types

Return type.

Associated Constants

Command method name.

Provided methods

Into command request.

Implementors