tomba 1.1.0

Official Rust client library for the Tomba Email Finder API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::collections::HashMap;

use crate::error::TombaError;
use crate::tomba::{Tomba, TombaResponse};

impl Tomba {
    /// Return your monthly request usage.
    ///
    /// See <https://developer.tomba.io/#usage>
    pub fn usage(&self) -> Result<TombaResponse, TombaError> {
        self.call("GET", "usage", &HashMap::new())
    }
}