Trait SelectorFilter

Source
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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§