rustemon 4.5.0

Library wrapping the awesome PokeAPI
Documentation
1
2
3
4
5
6
7
//! Machines endpoints group

/// Machines are the representation of items that teach moves to Pokémon. They vary from version to version,
/// so it is not certain that one specific TM or HM corresponds to a single Machine.
pub mod machine {
    crate::endpoint!(unnamed crate::model::machines::Machine; for "machine");
}