valorant_api 0.0.4

A library for interacting with the ingame Valorant-API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Hash, Clone, Copy)]
pub enum Team {
    #[serde(rename = "Red")]
    RED,
    #[serde(rename = "Blue")]
    BLUE,
    #[serde(rename = "Neutral")]
    NEUTRAL,
}