pub trait Exporter {
type InvokerType: Invoker;
// Required methods
fn unexport(&self);
fn get_invoker(&self) -> Self::InvokerType;
}pub trait Exporter {
type InvokerType: Invoker;
// Required methods
fn unexport(&self);
fn get_invoker(&self) -> Self::InvokerType;
}