pub trait MethodType {
    // Required method
    fn method_id() -> MethodId
       where Self: Sized;
}
Expand description

A trait that identifies a method on type level

Required Methods§

source

fn method_id() -> MethodIdwhere Self: Sized,

The identifier for this event’s method field

Implementors§