openai4rs 0.1.9

A non-official Rust crate for calling the OpenAI service
Documentation
1
2
3
4
5
use futures::Future;

pub trait AsyncFrom<T> {
    fn async_from(value: T) -> impl Future<Output = Self>;
}