psn_rs 0.1.0

Interact with PlayStation Network API in full Rust!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![crate_type = "lib"]
#![forbid(unsafe_code)]
// #![forbid(missing_docs)]
#![doc = include_str!("../README.md")]

mod constants;
mod endpoints;
/// All API-related models.
pub mod models;
mod psn_client;
mod psn_client_builder;
mod psn_error;

pub use psn_client::PSNClient;
pub use psn_client_builder::PSNClientBuilder;
pub use psn_error::{PSNApiResult, PSNError};