spotify_web_api 0.2.0

A wrapper for the Spotify Web API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod all_at_once;
mod lazy;
mod pagination;

pub use all_at_once::*;
pub use lazy::*;
pub use pagination::*;

/// A trait to indicate that an endpoint is pageable.
pub trait Pageable {}

impl<E> Pageable for &E where E: Pageable {}