Trait AirLabsRequest

Source
pub trait AirLabsRequest: Sized {
    type Response;
    type ResponseFree;

    // Required method
    fn url(&self, base: &str) -> String;
}

Required Associated Types§

Required Methods§

Source

fn url(&self, base: &str) -> String

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.

Implementors§