pub trait Endpoint {
// Required method
fn endpoint(base_url: &str, language: Language) -> String;
}Expand description
Types implementing this have an actual endpoint on the API.
Required Methods§
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.