earthmc 2.0.6

Async client for interacting with the EarthMC API
Documentation
1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};

use crate::model::named_uuid::NamedUuid;

#[derive(Debug, Deserialize, Serialize, Clone)]
pub struct OnlinePlayers {
    pub count: usize,
    pub players: Vec<NamedUuid>,
}