Trait chromiumoxide_types::Method[][src]

pub trait Method {
    fn identifier(&self) -> MethodId;

    fn domain_name(&self) -> MethodId { ... }
fn method_name(&self) -> MethodId { ... }
fn split(&self) -> (MethodId, MethodId) { ... } }
Expand description

Methods are message types that contain the field method = Self::identifier() in their json body.

Required methods

The whole string identifier for this method like: DOM.removeNode

Provided methods

The name of the domain this method belongs to: DOM

The standalone identifier of the method inside the domain: removeNode

Tuple of (domain_name, method_name) : (DOM, removeNode)

Implementors