pub trait StandingsHydrations: Hydrations<RequestData = ()> {
type Team: Debug + DeserializeOwned + PartialEq + Clone;
type League: Debug + DeserializeOwned + PartialEq + Clone;
type Division: Debug + DeserializeOwned + PartialEq + Clone;
type Sport: Debug + DeserializeOwned + PartialEq + Clone;
}Required Associated Types§
type Team: Debug + DeserializeOwned + PartialEq + Clone
type League: Debug + DeserializeOwned + PartialEq + Clone
type Division: Debug + DeserializeOwned + PartialEq + Clone
type Sport: Debug + DeserializeOwned + PartialEq + Clone
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.