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;
}

Required Associated Types§

Required Methods§

source

fn ask_for_wisdom( &self, intl_profile: &Profile, timestamp_ms: i64 ) -> Self::AskForWisdomResponseFut

Implementors§