pub trait Exporter {
    type InvokerType: Invoker;

    fn unexport(&self);
    fn get_invoker(&self) -> Self::InvokerType;
}

Required Associated Types

Required Methods

Implementors