facture_rs 0.1.3

A wrapper for the FactureApp API service.
Documentation
1
2
3
4
5
6
7
8
9
pub trait FactureRequest {
  type Input;
  type Output;
  type TError;

  fn request(&self, input: Self::Input)
    -> impl std::future::Future<Output = Result<Self::Output, Self::TError>>;

}