Request

Trait Request 

Source
pub trait Request: Debug + Serialize {
    // Required method
    fn endpoint<'a>(&self) -> Endpoints<'a>;
}

Required Methods§

Source

fn endpoint<'a>(&self) -> Endpoints<'a>

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§