pub trait Fetch: Sized { // Required method fn fetch(lang: Lang) -> impl Future<Output = Result<Self>> + Send; }
Helper trait to fetch data from API.
Fetch function for API.