srs-client 0.2.1

Provides bindings for the main functionalities of the SRS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! SRS Client helps to
//!
//! Simplify to working process with [SRS] under Rust.
//!
//! [SRS]: https://ossrs.io
mod callback_api;
mod http_api;

pub use crate::{
    callback_api::{SrsCallbackEvent, SrsCallbackReq},
    http_api::{SrsClient, SrsClientError, SrsClientResp},
};