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
use serde::Deserialize;

#[derive(Deserialize, Debug)]
pub struct TokenResponse {
    pub access_token: String,
    // pub token_type: String,
    // pub expires_in: u64,
    // pub refresh_token: String,
    // pub scope: String,
    // pub id_token: String,
    // pub refresh_token_expires_in: u64,
}