pandascore 0.1.1

A Rust client for the Pandascore API
Documentation
1
2
3
4
5
6
7
8
9
use compact_str::CompactString;
use serde::Deserialize;

#[derive(Debug, Clone, Eq, PartialEq, Hash, Deserialize)]
pub struct Spell {
    pub id: u64,
    pub image_url: String,
    pub name: CompactString,
}