pub trait FasToWrapper<T> {
type Output: FasCallable + 'static;
// Required method
fn convert(self) -> Self::Output;
}pub trait FasToWrapper<T> {
type Output: FasCallable + 'static;
// Required method
fn convert(self) -> Self::Output;
}