Trait nu_protocol::SignatureRegistry[][src]

pub trait SignatureRegistry: Debug {
    fn names(&self) -> Vec<String>;
fn has(&self, name: &str) -> bool;
fn get(&self, name: &str) -> Option<Signature>;
fn clone_box(&self) -> Box<dyn SignatureRegistry>; }

Required methods

Implementations on Foreign Types

Implementors