gw2api-rs 0.3.0

An asynchronous wrapper for the official Guild Wars 2 API
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::endpoint;

use serde::{Deserialize, Serialize};

/// The current build id of the game.
#[derive(Copy, Clone, Debug, Serialize, Deserialize)]
pub struct Build {
    pub id: u64,
}

endpoint!(Build, "/v2/build");