Trait Method

Source
pub trait Method {
    // Required method
    fn identifier(&self) -> MethodId;

    // Provided methods
    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§

Source

fn identifier(&self) -> MethodId

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

Provided Methods§

Source

fn domain_name(&self) -> MethodId

The name of the domain this method belongs to: DOM

Source

fn method_name(&self) -> MethodId

The standalone identifier of the method inside the domain: removeNode

Source

fn split(&self) -> (MethodId, MethodId)

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

Implementors§