top-gg 0.1.0-alpha.0

Bindings for the top.gg API.
Documentation
1
2
3
4
5
6
7
8
9
//! Configurable request structs returned by the client.

mod search_bots;

pub use search_bots::SearchBots;

use std::{future::Future, pin::Pin};

type Pending<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;