pub trait IntlWisdomServer_ProxyInterface: Send + Sync {
type AskForWisdomResponseFut: Future<Output = Result<Option<String>, Error>> + Send;
// Required method
fn ask_for_wisdom(
&self,
intl_profile: &Profile,
timestamp_ms: i64,
) -> Self::AskForWisdomResponseFut;
}