pub trait SelectorFilter {
    // Required methods
    fn is_allowed(_caller: H160, _selector: Option<u32>) -> bool;
    fn description() -> String;
}

Required Methods§

source

fn is_allowed(_caller: H160, _selector: Option<u32>) -> bool

source

fn description() -> String

Object Safety§

This trait is not object safe.

Implementors§