freesound-rs 0.2.0

A Rust client for the Freesound API to search and get sounds only
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! A Rust client library for the Freesound API
//!
//! This library provides a convenient interface to interact with the Freesound API,
//! allowing users to search, download and manage sound samples from Freesound.org.

mod client;
mod error;
mod models;

pub use client::{DEFAULT_BASE_URL, FreesoundClient};
pub use error::{FreesoundError, Result};
pub use models::{SearchQueryBuilder, SearchResponse, SortOption, Sound};