battler 0.9.1

Pokémon battle engine for Rust.
Documentation
1
2
3
/// Helper trait for documenting that a lifetime is captured by a return type.
pub trait Captures<'a> {}
impl<'a, T: ?Sized> Captures<'a> for T {}