Trait proxer::Endpoint [] [src]

pub trait Endpoint: Serialize {
    type ResponseType: Debug + Clone + DeserializeOwned;

    const URL: &'static str;
}

Every struct that is an endpoint, implements this trait.

Associated Types

Associated Constants

Implementors