pub trait StatTypeStats {
type Hitting: Stat;
type Pitching: Stat;
type Fielding: Stat;
type Catching: Stat;
}Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".