speedrun-api 1.3.0

A wrapper for the speedrun.com REST API
Documentation
1
2
3
4
5
6
7
8
9
use std::fmt::Display;

use super::Guest;

impl Display for Guest {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", &self.name)
    }
}